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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. customContainer: {
  62. width: 208
  63. },
  64. passwordSetupButtonLabel: {
  65. color: BaseTheme.palette.link01,
  66. marginTop: BaseTheme.spacing[3]
  67. },
  68. passwordSetRemotelyContainer: {
  69. alignItems: 'center',
  70. flexDirection: 'row',
  71. justifyContent: 'space-between'
  72. },
  73. passwordSetRemotelyText: {
  74. color: BaseTheme.palette.text01,
  75. marginTop: BaseTheme.spacing[3]
  76. },
  77. passwordSetRemotelyTextDisabled: {
  78. color: BaseTheme.palette.text02,
  79. marginTop: BaseTheme.spacing[3]
  80. }
  81. };