2019-05-07 14:50:57 +00:00
|
|
|
// @flow
|
|
|
|
|
|
|
|
import { ColorPalette } from '../../../../base/styles';
|
|
|
|
|
|
|
|
export const INDICATOR_COLOR = ColorPalette.lightGrey;
|
|
|
|
|
2020-04-06 15:25:30 +00:00
|
|
|
const WV_BACKGROUND = 'rgb(71, 71, 71)';
|
|
|
|
|
2019-05-07 14:50:57 +00:00
|
|
|
export default {
|
|
|
|
|
2020-04-06 15:25:30 +00:00
|
|
|
backDrop: {
|
|
|
|
backgroundColor: WV_BACKGROUND
|
|
|
|
},
|
|
|
|
|
2019-05-07 14:50:57 +00:00
|
|
|
indicatorWrapper: {
|
|
|
|
alignItems: 'center',
|
|
|
|
backgroundColor: ColorPalette.white,
|
2019-10-08 11:24:04 +00:00
|
|
|
height: '100%',
|
2019-05-07 14:50:57 +00:00
|
|
|
justifyContent: 'center'
|
|
|
|
},
|
|
|
|
|
|
|
|
webView: {
|
2020-04-06 15:25:30 +00:00
|
|
|
backgroundColor: WV_BACKGROUND,
|
2019-05-07 14:50:57 +00:00
|
|
|
flex: 1
|
|
|
|
}
|
|
|
|
};
|