Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. import BaseTheme from '../../../base/ui/components/BaseTheme.native';
  2. /**
  3. * The styles of the native components of the feature {@code breakout rooms}.
  4. */
  5. export default {
  6. button: {
  7. marginBottom: BaseTheme.spacing[4],
  8. marginHorizontal: BaseTheme.spacing[2]
  9. },
  10. collapsibleList: {
  11. alignItems: 'center',
  12. borderRadius: BaseTheme.shape.borderRadius,
  13. display: 'flex',
  14. flexDirection: 'row',
  15. height: BaseTheme.spacing[7],
  16. marginHorizontal: BaseTheme.spacing[2],
  17. marginTop: BaseTheme.spacing[3]
  18. },
  19. arrowIcon: {
  20. backgroundColor: BaseTheme.palette.ui03,
  21. height: BaseTheme.spacing[5],
  22. width: BaseTheme.spacing[5],
  23. borderRadius: 6,
  24. display: 'flex',
  25. alignItems: 'center',
  26. justifyContent: 'center'
  27. },
  28. roomName: {
  29. fontSize: 15,
  30. color: BaseTheme.palette.text01,
  31. fontWeight: 'bold',
  32. marginLeft: BaseTheme.spacing[2]
  33. },
  34. listTile: {
  35. fontSize: 15,
  36. color: BaseTheme.palette.text01,
  37. fontWeight: 'bold',
  38. marginLeft: BaseTheme.spacing[2]
  39. },
  40. autoAssignLabel: {
  41. color: BaseTheme.palette.link01
  42. },
  43. autoAssignButton: {
  44. alignSelf: 'center',
  45. justifyContent: 'center',
  46. marginTop: BaseTheme.spacing[3]
  47. },
  48. breakoutRoomsContainer: {
  49. backgroundColor: BaseTheme.palette.ui01,
  50. flex: 1,
  51. flexDirection: 'column',
  52. height: 'auto',
  53. paddingHorizontal: BaseTheme.spacing[3]
  54. },
  55. inputContainer: {
  56. marginLeft: BaseTheme.spacing[2],
  57. marginRight: BaseTheme.spacing[2],
  58. marginTop: BaseTheme.spacing[4]
  59. },
  60. centerInput: {
  61. paddingRight: BaseTheme.spacing[3],
  62. textAlign: 'center'
  63. }
  64. };