jiti-meet/react/features/recording/components/LiveStream/styles.native.js

42 lines
786 B
JavaScript
Raw Normal View History

2018-07-05 11:17:45 +00:00
// @flow
import { BoxModel, ColorPalette, createStyleSheet } from '../../../base/styles';
2018-07-05 11:17:45 +00:00
/**
* The styles of the React {@code Components} of LiveStream.
*/
export default createStyleSheet({
betaTag: {
backgroundColor: ColorPalette.darkGrey,
borderRadius: 2,
marginLeft: 16,
opacity: 0.90,
paddingLeft: 6,
paddingRight: 6
},
betaTagText: {
color: ColorPalette.white,
fontWeight: 'bold'
},
2018-07-05 11:17:45 +00:00
streamKeyFormWrapper: {
flexDirection: 'column',
padding: BoxModel.padding
},
streamKeyHelp: {
alignSelf: 'flex-end'
},
streamKeyInput: {
alignSelf: 'stretch',
height: 50
},
streamKeyInputLabel: {
alignSelf: 'flex-start'
}
});