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

28 lines
543 B
JavaScript
Raw Normal View History

2019-05-07 14:50:57 +00:00
// @flow
import BaseTheme from '../../../../base/ui/components/BaseTheme.native';
2019-05-07 14:50:57 +00:00
export const INDICATOR_COLOR = BaseTheme.palette.indicatorColor;
2019-05-07 14:50:57 +00:00
const WV_BACKGROUND = BaseTheme.palette.ui14;
2020-04-06 15:25:30 +00:00
2019-05-07 14:50:57 +00:00
export default {
2020-04-06 15:25:30 +00:00
backDrop: {
backgroundColor: WV_BACKGROUND,
flex: 1
2020-04-06 15:25:30 +00:00
},
2019-05-07 14:50:57 +00:00
indicatorWrapper: {
alignItems: 'center',
backgroundColor: BaseTheme.palette.ui12,
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
}
};