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