Files
jitsi-meet/react/features/etherpad/components/native/styles.js
Calinteodor 9df59b4a6f feat(conference) added React Navigation
Introduce navigation for all in-conference screens.
2021-10-20 21:29:21 +02:00

28 lines
476 B
JavaScript

// @flow
import { ColorPalette } from '../../../base/styles';
export const INDICATOR_COLOR = ColorPalette.lightGrey;
export default {
headerArrowBack: {
marginLeft: 12
},
indicatorWrapper: {
alignItems: 'center',
backgroundColor: ColorPalette.white,
height: '100%',
justifyContent: 'center'
},
sharedDocContainer: {
flex: 1
},
webView: {
backgroundColor: 'rgb(242, 242, 242)'
}
};