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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. import BaseTheme from '../../base/ui/components/BaseTheme.native';
  2. const SECONDARY_COLOR = BaseTheme.palette.border04;
  3. export default {
  4. joinButton: {
  5. marginVertical: BaseTheme.spacing[3]
  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. minHeight: '60%'
  30. },
  31. largeVideoContainerWide: {
  32. height: '100%',
  33. marginRight: 'auto',
  34. position: 'absolute',
  35. width: '60%'
  36. },
  37. contentContainer: {
  38. alignSelf: 'center',
  39. display: 'flex',
  40. justifyContent: 'center',
  41. minHeight: '40%',
  42. padding: BaseTheme.spacing[3],
  43. width: 400
  44. },
  45. contentContainerWide: {
  46. alignSelf: 'center',
  47. height: '100%',
  48. justifyContent: 'center',
  49. left: '60%',
  50. padding: BaseTheme.spacing[3],
  51. position: 'absolute',
  52. width: '40%'
  53. },
  54. toolboxContainer: {
  55. alignSelf: 'center',
  56. display: 'flex',
  57. flexDirection: 'row',
  58. justifyContent: 'center'
  59. },
  60. toolboxContainerWide: {
  61. flexDirection: 'row',
  62. justifyContent: 'center'
  63. },
  64. formWrapper: {
  65. alignSelf: 'stretch',
  66. justifyContent: 'center',
  67. marginHorizontal: BaseTheme.spacing[3]
  68. },
  69. field: {
  70. backgroundColor: BaseTheme.palette.field02,
  71. borderColor: SECONDARY_COLOR,
  72. borderRadius: BaseTheme.shape.borderRadius,
  73. borderWidth: 2,
  74. color: BaseTheme.palette.text06,
  75. height: BaseTheme.spacing[7],
  76. textAlign: 'center'
  77. },
  78. preJoinRoomName: {
  79. ...BaseTheme.typography.heading5,
  80. color: BaseTheme.palette.text01,
  81. textAlign: 'center'
  82. },
  83. displayRoomNameBackdrop: {
  84. alignSelf: 'center',
  85. backgroundColor: BaseTheme.palette.ui16,
  86. bottom: BaseTheme.spacing[3],
  87. borderRadius: 4,
  88. margin: BaseTheme.spacing[3],
  89. paddingHorizontal: BaseTheme.spacing[3],
  90. paddingVertical: BaseTheme.spacing[1],
  91. position: 'absolute'
  92. }
  93. };