123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- // @flow
-
- import BaseTheme from '../../../../base/ui/components/BaseTheme.native';
-
- /**
- * The styles of the feature security.
- */
- export default {
-
- securityDialogContainer: {
- backgroundColor: BaseTheme.palette.ui01,
- flex: 1
- },
-
- headerCloseButton: {
- marginLeft: 12
- },
-
- lobbyModeContainer: {
- borderBottomColor: BaseTheme.palette.border01,
- borderBottomWidth: 1,
- marginTop: BaseTheme.spacing[4]
- },
-
- lobbyModeContent: {
- marginHorizontal: BaseTheme.spacing[3],
- marginBottom: BaseTheme.spacing[4]
- },
-
- lobbyModeText: {
- color: BaseTheme.palette.text01
- },
-
- lobbyModeLabel: {
- color: BaseTheme.palette.text01,
- fontWeight: 'bold',
- marginTop: BaseTheme.spacing[2]
- },
-
- lobbyModeSection: {
- alignItems: 'center',
- flexDirection: 'row',
- justifyContent: 'space-between',
- marginTop: BaseTheme.spacing[1]
- },
-
- passwordContainer: {
- marginHorizontal: BaseTheme.spacing[3],
- marginTop: BaseTheme.spacing[4]
- },
-
- passwordContainerText: {
- color: BaseTheme.palette.text01
- },
-
- passwordContainerControls: {
- alignItems: 'center',
- flexDirection: 'row',
- justifyContent: 'space-between'
- },
-
- savedPasswordContainer: {
- flexDirection: 'row',
- marginTop: 14,
- width: 208
- },
-
- savedPasswordLabel: {
- color: BaseTheme.palette.text01,
- fontWeight: 'bold'
- },
-
- savedPassword: {
- color: BaseTheme.palette.text01
- },
-
- passwordInput: {
- color: BaseTheme.palette.text01,
- width: 208
- },
-
- passwordSetupButtonLabel: {
- color: BaseTheme.palette.link01,
- marginTop: BaseTheme.spacing[3]
- },
-
- passwordSetRemotelyContainer: {
- alignItems: 'center',
- flexDirection: 'row',
- justifyContent: 'space-between'
- },
-
- passwordSetRemotelyText: {
- color: BaseTheme.palette.text01,
- marginTop: BaseTheme.spacing[3]
- },
-
- passwordSetRemotelyTextDisabled: {
- color: BaseTheme.palette.text02,
- marginTop: BaseTheme.spacing[3]
- }
- };
|