jiti-meet/react/features/invite/components/dial-in-summary/native/styles.js

27 lines
490 B
JavaScript
Raw Normal View History

2019-05-07 14:50:57 +00:00
// @flow
import { ColorPalette } from '../../../../base/styles';
export const INDICATOR_COLOR = ColorPalette.lightGrey;
2020-04-06 15:25:30 +00:00
const WV_BACKGROUND = 'rgb(71, 71, 71)';
2019-05-07 14:50:57 +00:00
export default {
2020-04-06 15:25:30 +00:00
backDrop: {
backgroundColor: WV_BACKGROUND
},
2019-05-07 14:50:57 +00:00
indicatorWrapper: {
alignItems: 'center',
backgroundColor: ColorPalette.white,
height: '100%',
2019-05-07 14:50:57 +00:00
justifyContent: 'center'
},
webView: {
2020-04-06 15:25:30 +00:00
backgroundColor: WV_BACKGROUND,
2019-05-07 14:50:57 +00:00
flex: 1
}
};