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

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