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',
|
2020-09-16 15:13:15 +00:00
|
|
|
borderBottomColor: ColorPalette.lightGrey,
|
2018-12-19 18:40:17 +00:00
|
|
|
borderBottomWidth: 1,
|
2020-09-16 15:13:15 +00:00
|
|
|
borderTopLeftRadius: 16,
|
|
|
|
borderTopRightRadius: 16,
|
2018-12-19 18:40:17 +00:00
|
|
|
flexDirection: 'row',
|
2020-09-16 15:13:15 +00:00
|
|
|
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
|
|
|
}
|
|
|
|
});
|