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.ts 1.9KB

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