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

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