2019-10-04 15:10:19 +00:00
|
|
|
// @flow
|
|
|
|
|
2022-07-05 12:15:59 +00:00
|
|
|
import BaseTheme from '../../../base/ui/components/BaseTheme.native';
|
2019-10-04 15:10:19 +00:00
|
|
|
|
2022-07-05 12:15:59 +00:00
|
|
|
|
|
|
|
export const INDICATOR_COLOR = BaseTheme.palette.indicatorColor;
|
2019-10-04 15:10:19 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
indicatorWrapper: {
|
|
|
|
alignItems: 'center',
|
2022-07-05 12:15:59 +00:00
|
|
|
backgroundColor: BaseTheme.palette.ui12,
|
2019-10-04 15:10:19 +00:00
|
|
|
height: '100%',
|
|
|
|
justifyContent: 'center'
|
|
|
|
},
|
|
|
|
|
2021-10-20 19:29:21 +00:00
|
|
|
sharedDocContainer: {
|
2022-07-05 12:15:59 +00:00
|
|
|
backgroundColor: BaseTheme.palette.ui12,
|
|
|
|
flex: 1,
|
|
|
|
paddingRight: BaseTheme.spacing[3]
|
|
|
|
},
|
|
|
|
|
|
|
|
sharedDoc: {
|
|
|
|
marginBottom: BaseTheme.spacing[3]
|
2021-10-20 19:29:21 +00:00
|
|
|
},
|
|
|
|
|
2019-10-04 15:10:19 +00:00
|
|
|
webView: {
|
2022-07-05 12:15:59 +00:00
|
|
|
backgroundColor: BaseTheme.palette.ui12
|
2019-10-04 15:10:19 +00:00
|
|
|
}
|
|
|
|
};
|