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

22 lines
483 B
JavaScript
Raw Normal View History

2018-12-19 18:40:17 +00:00
// @flow
import { ColorPalette, createStyleSheet } from '../../../base/styles';
export default createStyleSheet({
participantNameContainer: {
alignItems: 'center',
borderBottomColor: ColorPalette.darkGrey,
borderBottomWidth: 1,
flexDirection: 'row',
height: 48
},
participantNameLabel: {
color: ColorPalette.lightGrey,
flexShrink: 1,
fontSize: 16,
2018-12-21 09:53:24 +00:00
marginLeft: 16,
2018-12-19 18:40:17 +00:00
opacity: 0.90
}
});