Files
jitsi-meet/react/features/recording/components/styles.js
2018-05-30 12:13:32 +02:00

24 lines
460 B
JavaScript

// @flow
import { 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
}
});