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.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. import BaseTheme from '../../base/ui/components/BaseTheme.native';
  2. export default {
  3. joinButton: {
  4. marginVertical: BaseTheme.spacing[3]
  5. },
  6. joinLowBandwidthLabel: {
  7. color: BaseTheme.palette.text01,
  8. textAlign: 'center'
  9. },
  10. buttonStylesBorderless: {
  11. iconStyle: {
  12. color: BaseTheme.palette.icon01,
  13. fontSize: 24
  14. },
  15. style: {
  16. flexDirection: 'row',
  17. justifyContent: 'center',
  18. margin: BaseTheme.spacing[3],
  19. height: 24,
  20. width: 24
  21. },
  22. underlayColor: 'transparent'
  23. },
  24. contentWrapper: {
  25. flex: 1
  26. },
  27. contentWrapperWide: {
  28. flex: 1,
  29. flexDirection: 'row'
  30. },
  31. largeVideoContainer: {
  32. height: '60%'
  33. },
  34. largeVideoContainerWide: {
  35. height: '100%',
  36. marginRight: 'auto',
  37. position: 'absolute',
  38. width: '60%'
  39. },
  40. contentContainer: {
  41. alignSelf: 'center',
  42. backgroundColor: BaseTheme.palette.uiBackground,
  43. bottom: 0,
  44. display: 'flex',
  45. height: 284,
  46. justifyContent: 'center',
  47. position: 'absolute',
  48. width: 390,
  49. zIndex: 1
  50. },
  51. contentContainerWide: {
  52. alignSelf: 'center',
  53. height: '100%',
  54. justifyContent: 'center',
  55. left: '60%',
  56. padding: BaseTheme.spacing[3],
  57. position: 'absolute',
  58. width: '40%'
  59. },
  60. toolboxContainer: {
  61. alignSelf: 'center',
  62. backgroundColor: BaseTheme.palette.ui01,
  63. borderRadius: BaseTheme.shape.borderRadius,
  64. display: 'flex',
  65. flexDirection: 'row',
  66. height: 60,
  67. justifyContent: 'space-between',
  68. marginVertical: BaseTheme.spacing[3],
  69. paddingHorizontal: BaseTheme.spacing[2],
  70. width: 148
  71. },
  72. toolboxContainerWide: {
  73. flexDirection: 'row',
  74. justifyContent: 'center'
  75. },
  76. formWrapper: {
  77. alignSelf: 'stretch',
  78. justifyContent: 'center',
  79. marginHorizontal: BaseTheme.spacing[3]
  80. },
  81. customInput: {
  82. textAlign: 'center'
  83. },
  84. preJoinRoomName: {
  85. ...BaseTheme.typography.heading5,
  86. color: BaseTheme.palette.text01,
  87. textAlign: 'center'
  88. },
  89. displayRoomNameBackdrop: {
  90. alignSelf: 'center',
  91. backgroundColor: BaseTheme.palette.uiBackground,
  92. borderRadius: BaseTheme.shape.borderRadius,
  93. marginTop: BaseTheme.spacing[3],
  94. opacity: 0.7,
  95. paddingHorizontal: BaseTheme.spacing[3],
  96. paddingVertical: BaseTheme.spacing[1],
  97. position: 'absolute',
  98. width: 243,
  99. zIndex: 1
  100. }
  101. };