You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

styles.ts 3.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. import BaseTheme from '../../../base/ui/components/BaseTheme.native';
  2. export const preJoinStyles = {
  3. joinButton: {
  4. marginTop: BaseTheme.spacing[3],
  5. width: 352
  6. },
  7. buttonStylesBorderless: {
  8. iconStyle: {
  9. color: BaseTheme.palette.icon01,
  10. fontSize: 24
  11. },
  12. style: {
  13. flexDirection: 'row',
  14. justifyContent: 'center',
  15. margin: BaseTheme.spacing[3],
  16. height: 24,
  17. width: 24
  18. },
  19. underlayColor: 'transparent'
  20. },
  21. contentWrapper: {
  22. flex: 1,
  23. flexDirection: 'row'
  24. },
  25. contentWrapperWide: {
  26. flex: 1,
  27. flexDirection: 'row'
  28. },
  29. largeVideoContainer: {
  30. height: '60%'
  31. },
  32. largeVideoContainerWide: {
  33. height: '100%',
  34. marginRight: 'auto',
  35. position: 'absolute',
  36. width: '50%'
  37. },
  38. contentContainer: {
  39. alignItems: 'center',
  40. backgroundColor: BaseTheme.palette.uiBackground,
  41. bottom: 0,
  42. display: 'flex',
  43. height: 280,
  44. justifyContent: 'center',
  45. position: 'absolute',
  46. width: '100%',
  47. zIndex: 1
  48. },
  49. contentContainerWide: {
  50. alignItems: 'center',
  51. height: '100%',
  52. justifyContent: 'center',
  53. left: '50%',
  54. padding: BaseTheme.spacing[3],
  55. position: 'absolute',
  56. width: '50%'
  57. },
  58. toolboxContainer: {
  59. alignItems: 'center',
  60. backgroundColor: BaseTheme.palette.ui01,
  61. borderRadius: BaseTheme.shape.borderRadius,
  62. display: 'flex',
  63. flexDirection: 'row',
  64. height: 60,
  65. justifyContent: 'space-between',
  66. marginBottom: BaseTheme.spacing[3],
  67. paddingHorizontal: BaseTheme.spacing[2],
  68. width: 148
  69. },
  70. customInput: {
  71. textAlign: 'center',
  72. width: 352
  73. },
  74. preJoinRoomName: {
  75. ...BaseTheme.typography.heading5,
  76. color: BaseTheme.palette.text01,
  77. textAlign: 'center'
  78. },
  79. displayRoomNameBackdrop: {
  80. alignSelf: 'center',
  81. backgroundColor: BaseTheme.palette.uiBackground,
  82. borderRadius: BaseTheme.shape.borderRadius,
  83. marginTop: BaseTheme.spacing[3],
  84. opacity: 0.7,
  85. paddingHorizontal: BaseTheme.spacing[3],
  86. paddingVertical: BaseTheme.spacing[1],
  87. position: 'absolute',
  88. maxWidth: 243,
  89. zIndex: 1
  90. },
  91. unsafeRoomWarningContainer: {
  92. height: '100%',
  93. width: '100%',
  94. backgroundColor: BaseTheme.palette.ui01,
  95. display: 'flex',
  96. alignItems: 'center',
  97. justifyContent: 'center',
  98. color: 'white'
  99. },
  100. unsafeRoomContentContainer: {
  101. justifySelf: 'center',
  102. height: '100%',
  103. display: 'flex',
  104. alignItems: 'center',
  105. justifyContent: 'center',
  106. paddingHorizontal: BaseTheme.spacing[4]
  107. },
  108. unsafeRoomContentContainerWide: {
  109. alignItems: 'center',
  110. justifySelf: 'center',
  111. height: '100%',
  112. display: 'flex',
  113. justifyContent: 'center',
  114. marginLeft: BaseTheme.spacing[7],
  115. paddingHorizontal: BaseTheme.spacing[6]
  116. },
  117. warningText: {
  118. ...BaseTheme.typography.bodyLongRegularLarge,
  119. color: BaseTheme.palette.text01,
  120. textAlign: 'center',
  121. marginBottom: BaseTheme.spacing[4]
  122. },
  123. warningIconWrapper: {
  124. backgroundColor: BaseTheme.palette.warning01,
  125. borderRadius: BaseTheme.shape.circleRadius,
  126. padding: BaseTheme.spacing[4],
  127. marginBottom: BaseTheme.spacing[4],
  128. zIndex: 0
  129. },
  130. warningIcon: {
  131. color: BaseTheme.palette.ui01,
  132. fontSize: 40
  133. }
  134. };