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

12345678910111213141516171819202122
  1. // @flow
  2. import { ColorPalette } from '../../../base/styles';
  3. export const INDICATOR_COLOR = ColorPalette.lightGrey;
  4. export default {
  5. indicatorWrapper: {
  6. alignItems: 'center',
  7. backgroundColor: ColorPalette.white,
  8. height: '100%',
  9. justifyContent: 'center'
  10. },
  11. sharedDocContainer: {
  12. flex: 1
  13. },
  14. webView: {
  15. backgroundColor: 'rgb(242, 242, 242)'
  16. }
  17. };