2019-10-04 15:10:19 +00:00
|
|
|
// @flow
|
|
|
|
|
|
|
|
import { ColorPalette } from '../../../base/styles';
|
|
|
|
|
|
|
|
export const INDICATOR_COLOR = ColorPalette.lightGrey;
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
|
|
|
indicatorWrapper: {
|
|
|
|
alignItems: 'center',
|
|
|
|
backgroundColor: ColorPalette.white,
|
|
|
|
height: '100%',
|
|
|
|
justifyContent: 'center'
|
|
|
|
},
|
|
|
|
|
|
|
|
webView: {
|
2020-04-06 15:27:03 +00:00
|
|
|
backgroundColor: 'rgb(242, 242, 242)'
|
2019-10-04 15:10:19 +00:00
|
|
|
}
|
|
|
|
};
|