您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

styles.js 2.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  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. backgroundColor: BaseTheme.palette.ui01,
  9. flex: 1
  10. },
  11. headerCloseButton: {
  12. marginLeft: 12
  13. },
  14. lobbyModeContainer: {
  15. borderBottomColor: BaseTheme.palette.border01,
  16. borderBottomWidth: 1,
  17. marginTop: BaseTheme.spacing[4]
  18. },
  19. lobbyModeContent: {
  20. marginHorizontal: BaseTheme.spacing[3],
  21. marginBottom: BaseTheme.spacing[4]
  22. },
  23. lobbyModeText: {
  24. color: BaseTheme.palette.text01
  25. },
  26. lobbyModeLabel: {
  27. color: BaseTheme.palette.text01,
  28. fontWeight: 'bold',
  29. marginTop: BaseTheme.spacing[2]
  30. },
  31. lobbyModeSection: {
  32. alignItems: 'center',
  33. flexDirection: 'row',
  34. justifyContent: 'space-between',
  35. marginTop: BaseTheme.spacing[1]
  36. },
  37. passwordContainer: {
  38. marginHorizontal: BaseTheme.spacing[3],
  39. marginTop: BaseTheme.spacing[4]
  40. },
  41. passwordContainerText: {
  42. color: BaseTheme.palette.text01
  43. },
  44. passwordContainerControls: {
  45. alignItems: 'center',
  46. flexDirection: 'row',
  47. justifyContent: 'space-between'
  48. },
  49. savedPasswordContainer: {
  50. flexDirection: 'row',
  51. marginTop: 14,
  52. width: 208
  53. },
  54. savedPasswordLabel: {
  55. color: BaseTheme.palette.text01,
  56. fontWeight: 'bold'
  57. },
  58. savedPassword: {
  59. color: BaseTheme.palette.text01
  60. },
  61. passwordInput: {
  62. color: BaseTheme.palette.text01,
  63. width: 208
  64. },
  65. passwordSetupButtonLabel: {
  66. color: BaseTheme.palette.link01,
  67. marginTop: BaseTheme.spacing[3]
  68. },
  69. passwordSetRemotelyContainer: {
  70. alignItems: 'center',
  71. flexDirection: 'row',
  72. justifyContent: 'space-between'
  73. },
  74. passwordSetRemotelyText: {
  75. color: BaseTheme.palette.text01,
  76. marginTop: BaseTheme.spacing[3]
  77. },
  78. passwordSetRemotelyTextDisabled: {
  79. color: BaseTheme.palette.text02,
  80. marginTop: BaseTheme.spacing[3]
  81. }
  82. };