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.js 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  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. },
  24. contentWrapperWide: {
  25. flex: 1,
  26. flexDirection: 'row'
  27. },
  28. largeVideoContainer: {
  29. height: '60%'
  30. },
  31. largeVideoContainerWide: {
  32. height: '100%',
  33. marginRight: 'auto',
  34. position: 'absolute',
  35. width: '50%'
  36. },
  37. contentContainer: {
  38. alignItems: 'center',
  39. backgroundColor: BaseTheme.palette.uiBackground,
  40. bottom: 0,
  41. display: 'flex',
  42. height: 316,
  43. justifyContent: 'center',
  44. position: 'absolute',
  45. width: '100%',
  46. zIndex: 1
  47. },
  48. contentContainerWide: {
  49. alignItems: 'center',
  50. height: '100%',
  51. justifyContent: 'center',
  52. left: '50%',
  53. padding: BaseTheme.spacing[3],
  54. position: 'absolute',
  55. width: '50%'
  56. },
  57. toolboxContainer: {
  58. alignItems: 'center',
  59. backgroundColor: BaseTheme.palette.ui01,
  60. borderRadius: BaseTheme.shape.borderRadius,
  61. display: 'flex',
  62. flexDirection: 'row',
  63. height: 60,
  64. justifyContent: 'space-between',
  65. marginBottom: BaseTheme.spacing[3],
  66. paddingHorizontal: BaseTheme.spacing[2],
  67. width: 148
  68. },
  69. customInput: {
  70. textAlign: 'center',
  71. width: 352
  72. },
  73. preJoinRoomName: {
  74. ...BaseTheme.typography.heading5,
  75. color: BaseTheme.palette.text01,
  76. textAlign: 'center'
  77. },
  78. displayRoomNameBackdrop: {
  79. alignSelf: 'center',
  80. backgroundColor: BaseTheme.palette.uiBackground,
  81. borderRadius: BaseTheme.shape.borderRadius,
  82. marginTop: BaseTheme.spacing[3],
  83. opacity: 0.7,
  84. paddingHorizontal: BaseTheme.spacing[3],
  85. paddingVertical: BaseTheme.spacing[1],
  86. position: 'absolute',
  87. width: 243,
  88. zIndex: 1
  89. }
  90. };