Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. import BaseTheme from '../../base/ui/components/BaseTheme.native';
  2. const SECONDARY_COLOR = BaseTheme.palette.border04;
  3. export default {
  4. prejoinButton: {
  5. marginTop: BaseTheme.spacing[4]
  6. },
  7. buttonStylesBorderless: {
  8. iconStyle: {
  9. color: BaseTheme.palette.icon01,
  10. fontSize: 24
  11. },
  12. style: {
  13. flexDirection: 'row',
  14. justifyContent: 'center',
  15. marginHorizontal: 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: '50%'
  30. },
  31. largeVideoContainerWide: {
  32. height: '100%',
  33. marginRight: 'auto',
  34. position: 'absolute',
  35. width: '50%'
  36. },
  37. contentContainer: {
  38. alignSelf: 'center',
  39. display: 'flex',
  40. justifyContent: 'center',
  41. minHeight: '50%',
  42. paddingHorizontal: BaseTheme.spacing[3],
  43. width: 400
  44. },
  45. contentContainerWide: {
  46. alignItems: 'center',
  47. height: '100%',
  48. justifyContent: 'center',
  49. left: '50%',
  50. paddingHorizontal: BaseTheme.spacing[3],
  51. position: 'absolute',
  52. width: '50%'
  53. },
  54. toolboxContainer: {
  55. alignSelf: 'center',
  56. display: 'flex',
  57. flexDirection: 'row',
  58. justifyContent: 'center',
  59. marginTop: BaseTheme.spacing[4]
  60. },
  61. toolboxContainerWide: {
  62. flexDirection: 'row',
  63. justifyContent: 'center',
  64. marginTop: BaseTheme.spacing[4]
  65. },
  66. formWrapper: {
  67. alignSelf: 'stretch',
  68. justifyContent: 'center',
  69. marginHorizontal: BaseTheme.spacing[3]
  70. },
  71. field: {
  72. backgroundColor: BaseTheme.palette.field02,
  73. borderColor: SECONDARY_COLOR,
  74. borderRadius: BaseTheme.shape.borderRadius,
  75. borderWidth: 2,
  76. color: BaseTheme.palette.text06,
  77. height: BaseTheme.spacing[7],
  78. marginTop: BaseTheme.spacing[3],
  79. textAlign: 'center'
  80. }
  81. };