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

29 lines
595 B
JavaScript
Raw Normal View History

// @flow
2018-06-14 09:15:36 +00:00
import { BoxModel, ColorPalette, createStyleSheet } from '../../base/styles';
/**
* The styles of the React {@code Components} of the feature recording.
*/
export default createStyleSheet({
/**
* Style for the recording indicator.
*/
indicatorLive: {
backgroundColor: ColorPalette.blue
},
/**
* Style for the recording indicator.
*/
indicatorRecording: {
backgroundColor: ColorPalette.red
2018-06-14 09:15:36 +00:00
},
messageContainer: {
paddingHorizontal: BoxModel.padding,
paddingVertical: 1.5 * BoxModel.padding
}
});