Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

styles.js 460B

1234567891011121314151617181920212223
  1. // @flow
  2. import { ColorPalette, createStyleSheet } from '../../base/styles';
  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. indicatorLive: {
  11. backgroundColor: ColorPalette.blue
  12. },
  13. /**
  14. * Style for the recording indicator.
  15. */
  16. indicatorRecording: {
  17. backgroundColor: ColorPalette.red
  18. }
  19. });