Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

styles.js 386B

123456789101112131415161718
  1. // @flow
  2. import { ColorPalette, createStyleSheet } from '../../base/styles';
  3. export const AUD_LABEL_COLOR = ColorPalette.green;
  4. /**
  5. * The styles of the React {@code Components} of the feature video-quality.
  6. */
  7. export default createStyleSheet({
  8. /**
  9. * Style for the audio-only indicator.
  10. */
  11. indicatorAudioOnly: {
  12. backgroundColor: AUD_LABEL_COLOR
  13. }
  14. });