1234567891011121314151617181920212223242526 |
- // @flow
-
- import { ColorPalette } from '../../../../base/styles';
-
- export const INDICATOR_COLOR = ColorPalette.lightGrey;
-
- const WV_BACKGROUND = 'rgb(71, 71, 71)';
-
- export default {
-
- backDrop: {
- backgroundColor: WV_BACKGROUND
- },
-
- indicatorWrapper: {
- alignItems: 'center',
- backgroundColor: ColorPalette.white,
- height: '100%',
- justifyContent: 'center'
- },
-
- webView: {
- backgroundColor: WV_BACKGROUND,
- flex: 1
- }
- };
|