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

1234567891011121314151617181920212223242526
  1. import BaseTheme from '../../../base/ui/components/BaseTheme.native';
  2. export const INDICATOR_COLOR = BaseTheme.palette.ui07;
  3. export default {
  4. indicatorWrapper: {
  5. alignItems: 'center',
  6. backgroundColor: BaseTheme.palette.ui10,
  7. height: '100%',
  8. justifyContent: 'center'
  9. },
  10. sharedDocContainer: {
  11. backgroundColor: BaseTheme.palette.ui10,
  12. flex: 1,
  13. paddingRight: BaseTheme.spacing[3]
  14. },
  15. sharedDoc: {
  16. marginBottom: BaseTheme.spacing[3]
  17. },
  18. webView: {
  19. backgroundColor: BaseTheme.palette.ui10
  20. }
  21. };