Rearrange recording feature files

This commit is contained in:
Bettenbuk Zoltan
2018-11-19 15:09:09 +01:00
committed by Zoltan Bettenbuk
parent 2b1cb75e40
commit 71edea8aac
40 changed files with 115 additions and 69 deletions

View File

@@ -0,0 +1,26 @@
// @flow
import { ColorPalette, createStyleSheet } from '../../../base/styles';
export const LIVE_LABEL_COLOR = ColorPalette.blue;
export const REC_LABEL_COLOR = ColorPalette.red;
/**
* The styles of the React {@code Components} of the feature recording.
*/
export default createStyleSheet({
/**
* Style for the recording indicator.
*/
indicatorLive: {
backgroundColor: LIVE_LABEL_COLOR
},
/**
* Style for the recording indicator.
*/
indicatorRecording: {
backgroundColor: REC_LABEL_COLOR
}
});