mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-04-09 20:30:19 +00:00
20 lines
372 B
JavaScript
20 lines
372 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'
|
|
},
|
|
|
|
webView: {
|
|
backgroundColor: 'rgb(242, 242, 242)'
|
|
}
|
|
};
|