You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

styles.js 987B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. // @flow
  2. import { ColorPalette, createStyleSheet } from '../../../base/styles';
  3. /**
  4. * The React {@code Component} styles of {@code AudioRoutePickerDialog}.
  5. *
  6. * It uses a {@code BottomSheet} and these have been implemented as per the
  7. * Material Design guidelines:
  8. * {@link https://material.io/guidelines/components/bottom-sheets.html}.
  9. */
  10. export default createStyleSheet({
  11. /**
  12. * Base style for each row.
  13. */
  14. deviceRow: {
  15. alignItems: 'center',
  16. flexDirection: 'row',
  17. height: 48
  18. },
  19. /**
  20. * Style for the {@code Icon} element in a row.
  21. */
  22. deviceIcon: {
  23. color: ColorPalette.white,
  24. fontSize: 24
  25. },
  26. /**
  27. * Style for the {@code Text} element in a row.
  28. */
  29. deviceText: {
  30. color: ColorPalette.white,
  31. fontSize: 16,
  32. marginLeft: 32
  33. },
  34. /**
  35. * Style for a row which is marked as selected.
  36. */
  37. selectedText: {
  38. color: ColorPalette.blue
  39. }
  40. });