mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
23 lines
421 B
JavaScript
23 lines
421 B
JavaScript
// @flow
|
|
|
|
import { ColorPalette } from '../../../base/styles';
|
|
|
|
export const INDICATOR_COLOR = ColorPalette.lightGrey;
|
|
|
|
export default {
|
|
indicatorWrapper: {
|
|
alignItems: 'center',
|
|
backgroundColor: ColorPalette.white,
|
|
height: '100%',
|
|
justifyContent: 'center'
|
|
},
|
|
|
|
sharedDocContainer: {
|
|
flex: 1
|
|
},
|
|
|
|
webView: {
|
|
backgroundColor: 'rgb(242, 242, 242)'
|
|
}
|
|
};
|