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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. import BaseTheme from '../../base/ui/components/BaseTheme.native';
  2. const SECONDARY_COLOR = BaseTheme.palette.border04;
  3. const preJoinText = {
  4. ...BaseTheme.typography.heading5,
  5. color: BaseTheme.palette.text01,
  6. textAlign: 'center'
  7. };
  8. export default {
  9. prejoinButton: {
  10. marginTop: BaseTheme.spacing[3]
  11. },
  12. buttonStylesBorderless: {
  13. iconStyle: {
  14. color: BaseTheme.palette.icon01,
  15. fontSize: 24
  16. },
  17. style: {
  18. flexDirection: 'row',
  19. justifyContent: 'center',
  20. marginHorizontal: BaseTheme.spacing[3],
  21. height: 24,
  22. width: 24
  23. },
  24. underlayColor: 'transparent'
  25. },
  26. contentWrapper: {
  27. flex: 1
  28. },
  29. contentWrapperWide: {
  30. flex: 1,
  31. flexDirection: 'row'
  32. },
  33. largeVideoContainer: {
  34. minHeight: '50%'
  35. },
  36. largeVideoContainerWide: {
  37. height: '100%',
  38. marginRight: 'auto',
  39. position: 'absolute',
  40. width: '50%'
  41. },
  42. contentContainer: {
  43. alignSelf: 'center',
  44. display: 'flex',
  45. justifyContent: 'center',
  46. minHeight: '50%',
  47. paddingHorizontal: BaseTheme.spacing[3],
  48. width: 400
  49. },
  50. contentContainerWide: {
  51. alignItems: 'center',
  52. height: '100%',
  53. justifyContent: 'center',
  54. left: '50%',
  55. paddingHorizontal: BaseTheme.spacing[3],
  56. position: 'absolute',
  57. width: '50%'
  58. },
  59. toolboxContainer: {
  60. alignSelf: 'center',
  61. display: 'flex',
  62. flexDirection: 'row',
  63. justifyContent: 'center',
  64. marginTop: BaseTheme.spacing[3]
  65. },
  66. toolboxContainerWide: {
  67. flexDirection: 'row',
  68. justifyContent: 'center',
  69. marginTop: BaseTheme.spacing[3]
  70. },
  71. formWrapper: {
  72. alignSelf: 'stretch',
  73. justifyContent: 'center',
  74. marginHorizontal: BaseTheme.spacing[3]
  75. },
  76. field: {
  77. backgroundColor: BaseTheme.palette.field02,
  78. borderColor: SECONDARY_COLOR,
  79. borderRadius: BaseTheme.shape.borderRadius,
  80. borderWidth: 2,
  81. color: BaseTheme.palette.text06,
  82. height: BaseTheme.spacing[7],
  83. marginTop: BaseTheme.spacing[3],
  84. textAlign: 'center'
  85. },
  86. preJoinTitle: {
  87. ...preJoinText
  88. },
  89. preJoinRoomName: {
  90. ...preJoinText
  91. }
  92. };