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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. import BaseTheme from '../../../base/ui/components/BaseTheme.native';
  2. export default {
  3. lobbyChatWrapper: {
  4. backgroundColor: BaseTheme.palette.ui01,
  5. flex: 1
  6. },
  7. passwordJoinButtons: {
  8. top: 40
  9. },
  10. contentContainer: {
  11. alignItems: 'center',
  12. backgroundColor: BaseTheme.palette.uiBackground,
  13. bottom: 0,
  14. display: 'flex',
  15. height: 388,
  16. justifyContent: 'center',
  17. position: 'absolute',
  18. width: '100%',
  19. zIndex: 1
  20. },
  21. formWrapper: {
  22. alignItems: 'center',
  23. justifyContent: 'center'
  24. },
  25. customInput: {
  26. position: 'relative',
  27. textAlign: 'center',
  28. top: BaseTheme.spacing[6],
  29. width: 352
  30. },
  31. joiningMessage: {
  32. color: BaseTheme.palette.text01,
  33. marginHorizontal: BaseTheme.spacing[3],
  34. textAlign: 'center'
  35. },
  36. loadingIndicator: {
  37. marginBottom: BaseTheme.spacing[3]
  38. },
  39. // KnockingParticipantList
  40. knockingParticipantList: {
  41. backgroundColor: BaseTheme.palette.ui01
  42. },
  43. knockingParticipantListDetails: {
  44. flex: 1,
  45. marginLeft: BaseTheme.spacing[2]
  46. },
  47. knockingParticipantListEntry: {
  48. alignItems: 'center',
  49. backgroundColor: BaseTheme.palette.ui01,
  50. flexDirection: 'row'
  51. },
  52. knockingParticipantListText: {
  53. color: 'white'
  54. },
  55. lobbyButtonAdmit: {
  56. position: 'absolute',
  57. right: 184,
  58. top: 6
  59. },
  60. lobbyButtonChat: {
  61. position: 'absolute',
  62. right: 104,
  63. top: 6
  64. },
  65. lobbyButtonReject: {
  66. position: 'absolute',
  67. right: 16,
  68. top: 6
  69. },
  70. lobbyTitle: {
  71. ...BaseTheme.typography.heading5,
  72. color: BaseTheme.palette.text01,
  73. marginBottom: BaseTheme.spacing[3],
  74. textAlign: 'center'
  75. },
  76. lobbyWaitingFragmentContainer: {
  77. height: 260
  78. }
  79. };