jiti-meet/react/features/video-menu/components/native/styles.js

53 lines
1.1 KiB
JavaScript
Raw Normal View History

2018-12-19 18:40:17 +00:00
// @flow
2019-01-05 16:49:21 +00:00
import {
MD_FONT_SIZE,
MD_ITEM_HEIGHT,
MD_ITEM_MARGIN_PADDING
} from '../../../base/dialog';
2018-12-19 18:40:17 +00:00
import { ColorPalette, createStyleSheet } from '../../../base/styles';
export default createStyleSheet({
participantNameContainer: {
alignItems: 'center',
borderBottomColor: ColorPalette.lightGrey,
2018-12-19 18:40:17 +00:00
borderBottomWidth: 1,
borderTopLeftRadius: 16,
borderTopRightRadius: 16,
2018-12-19 18:40:17 +00:00
flexDirection: 'row',
height: MD_ITEM_HEIGHT,
paddingLeft: MD_ITEM_MARGIN_PADDING
2018-12-19 18:40:17 +00:00
},
participantNameLabel: {
color: ColorPalette.lightGrey,
flexShrink: 1,
2019-01-05 16:49:21 +00:00
fontSize: MD_FONT_SIZE,
marginLeft: MD_ITEM_MARGIN_PADDING,
2018-12-19 18:40:17 +00:00
opacity: 0.90
2020-12-22 09:12:52 +00:00
},
statsTitleText: {
fontSize: 16,
fontWeight: 'bold',
marginRight: 3
},
statsInfoText: {
fontSize: 16,
marginRight: 2,
marginLeft: 2
},
statsInfoCell: {
alignItems: 'center',
flexDirection: 'row',
height: 30,
justifyContent: 'flex-start'
},
statsWrapper: {
marginVertical: 10
2018-12-19 18:40:17 +00:00
}
});