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.ts 468B

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