1234567891011121314151617181920 |
- // @flow
-
- import { createStyleSheet } from '../../../base/styles';
- import BaseTheme from '../../../base/ui/components/BaseTheme';
-
- /**
- * The styles of the React {@code Components} of the feature recording.
- */
- export default createStyleSheet({
-
- /**
- * Style for the recording indicator.
- */
- indicatorStyle: {
- marginRight: 4,
- marginLeft: 0,
- marginBottom: 0,
- backgroundColor: BaseTheme.palette.iconError
- }
- });
|