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

12345678910111213141516171819202122232425262728293031323334353637
  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. limitUrlText: {
  20. alignItems: 'center',
  21. display: 'flex',
  22. marginBottom: BaseTheme.spacing[2],
  23. textAlign: 'center'
  24. },
  25. limitUrl: {
  26. color: BaseTheme.palette.link01,
  27. fontWeight: 'bold'
  28. }
  29. };