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 649B

12345678910111213141516171819202122232425262728293031
  1. import { BoxModel } from '../../../base/styles';
  2. import BaseTheme from '../../../base/ui/components/BaseTheme';
  3. export const TEXT_COLOR = BaseTheme.palette.text01;
  4. /**
  5. * Styles of the navigation feature.
  6. */
  7. export const navigationStyles = {
  8. connectingScreenContainer: {
  9. backgroundColor: BaseTheme.palette.uiBackground,
  10. flex: 1
  11. },
  12. connectingScreenContent: {
  13. alignItems: 'center',
  14. flex: 1,
  15. flexDirection: 'column',
  16. justifyContent: 'center'
  17. },
  18. connectingScreenIndicator: {
  19. margin: BoxModel.margin
  20. },
  21. connectingScreenText: {
  22. color: TEXT_COLOR
  23. }
  24. };