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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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. width: 208
  52. },
  53. savedPasswordLabel: {
  54. color: BaseTheme.palette.text01,
  55. fontWeight: 'bold'
  56. },
  57. savedPassword: {
  58. color: BaseTheme.palette.text01
  59. },
  60. customContainer: {
  61. width: 208
  62. },
  63. passwordSetupButtonLabel: {
  64. color: BaseTheme.palette.link01
  65. },
  66. passwordSetRemotelyContainer: {
  67. alignItems: 'center',
  68. flexDirection: 'row',
  69. justifyContent: 'space-between'
  70. },
  71. passwordSetRemotelyText: {
  72. color: BaseTheme.palette.text01
  73. },
  74. passwordSetRemotelyTextDisabled: {
  75. color: BaseTheme.palette.text02
  76. }
  77. };