Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

styles.js 2.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. // @flow
  2. import BaseTheme from '../../../../base/ui/components/BaseTheme.native';
  3. /**
  4. * The styles of the feature security.
  5. */
  6. export default {
  7. securityDialogContainer: {
  8. flex: 1,
  9. marginTop: BaseTheme.spacing[4]
  10. },
  11. headerCloseButton: {
  12. marginLeft: 12
  13. },
  14. lobbyModeContainer: {
  15. borderBottomColor: BaseTheme.palette.border01,
  16. borderBottomWidth: 1
  17. },
  18. lobbyModeContent: {
  19. marginHorizontal: BaseTheme.spacing[3],
  20. marginBottom: BaseTheme.spacing[4]
  21. },
  22. lobbyModeLabel: {
  23. fontWeight: 'bold',
  24. marginTop: BaseTheme.spacing[2]
  25. },
  26. lobbyModeSection: {
  27. alignItems: 'center',
  28. flexDirection: 'row',
  29. justifyContent: 'space-between',
  30. marginTop: BaseTheme.spacing[1]
  31. },
  32. passwordContainer: {
  33. marginHorizontal: BaseTheme.spacing[3],
  34. marginTop: BaseTheme.spacing[4]
  35. },
  36. passwordContainerControls: {
  37. alignItems: 'center',
  38. flexDirection: 'row',
  39. justifyContent: 'space-between'
  40. },
  41. savedPasswordContainer: {
  42. flexDirection: 'row',
  43. marginTop: 20,
  44. width: 208
  45. },
  46. savedPasswordLabel: {
  47. fontWeight: 'bold'
  48. },
  49. savedPassword: {
  50. color: BaseTheme.palette.text06
  51. },
  52. passwordInput: {
  53. borderColor: BaseTheme.palette.action03Active,
  54. borderRadius: BaseTheme.spacing[1],
  55. borderWidth: 2,
  56. height: BaseTheme.spacing[6],
  57. marginTop: BaseTheme.spacing[2],
  58. paddingLeft: BaseTheme.spacing[1],
  59. width: 208
  60. },
  61. passwordSetupButton: {
  62. ...BaseTheme.typography.heading7,
  63. color: BaseTheme.palette.screen01Header,
  64. marginTop: BaseTheme.spacing[4],
  65. textTransform: 'uppercase'
  66. },
  67. passwordSetRemotelyContainer: {
  68. alignItems: 'center',
  69. flexDirection: 'row',
  70. justifyContent: 'space-between'
  71. },
  72. passwordSetRemotelyText: {
  73. color: BaseTheme.palette.text06,
  74. marginTop: 22
  75. },
  76. passwordSetRemotelyTextDisabled: {
  77. color: BaseTheme.palette.text03,
  78. marginTop: 22
  79. }
  80. };