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

123456789101112131415161718192021222324252627
  1. // @flow
  2. import BaseTheme from '../../../../base/ui/components/BaseTheme.native';
  3. export const INDICATOR_COLOR = BaseTheme.palette.indicatorColor;
  4. const WV_BACKGROUND = BaseTheme.palette.ui14;
  5. export default {
  6. backDrop: {
  7. backgroundColor: WV_BACKGROUND,
  8. flex: 1
  9. },
  10. indicatorWrapper: {
  11. alignItems: 'center',
  12. backgroundColor: BaseTheme.palette.ui12,
  13. height: '100%',
  14. justifyContent: 'center'
  15. },
  16. webView: {
  17. backgroundColor: WV_BACKGROUND,
  18. flex: 1
  19. }
  20. };