Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

styles.js 2.5KB

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