Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

12345678910111213141516171819202122232425262728
  1. // @flow
  2. import { BoxModel, 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. messageContainer: {
  20. paddingHorizontal: BoxModel.padding,
  21. paddingVertical: 1.5 * BoxModel.padding
  22. }
  23. });