You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

styles.js 461B

1234567891011121314151617181920
  1. // @flow
  2. import { createStyleSheet } from '../../../base/styles';
  3. import BaseTheme from '../../../base/ui/components/BaseTheme';
  4. /**
  5. * The styles of the React {@code Components} of the feature recording.
  6. */
  7. export default createStyleSheet({
  8. /**
  9. * Style for the recording indicator.
  10. */
  11. indicatorStyle: {
  12. marginRight: 4,
  13. marginLeft: 0,
  14. marginBottom: 0,
  15. backgroundColor: BaseTheme.palette.iconError
  16. }
  17. });