mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-14 12:57:49 +00:00
29 lines
595 B
JavaScript
29 lines
595 B
JavaScript
// @flow
|
|
|
|
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
|
|
},
|
|
|
|
messageContainer: {
|
|
paddingHorizontal: BoxModel.padding,
|
|
paddingVertical: 1.5 * BoxModel.padding
|
|
}
|
|
});
|