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.ts 523B

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