2021-12-10 16:23:27 +00:00
|
|
|
// @flow
|
|
|
|
|
|
|
|
import BaseTheme from '../../../../base/ui/components/BaseTheme.native';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The styles of the feature security.
|
|
|
|
*/
|
|
|
|
export default {
|
|
|
|
|
|
|
|
securityDialogContainer: {
|
2022-02-17 14:51:00 +00:00
|
|
|
backgroundColor: BaseTheme.palette.ui01,
|
|
|
|
flex: 1
|
2021-12-10 16:23:27 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
headerCloseButton: {
|
|
|
|
marginLeft: 12
|
|
|
|
},
|
|
|
|
|
|
|
|
lobbyModeContainer: {
|
|
|
|
borderBottomColor: BaseTheme.palette.border01,
|
2022-02-17 14:51:00 +00:00
|
|
|
borderBottomWidth: 1,
|
|
|
|
marginTop: BaseTheme.spacing[4]
|
2021-12-10 16:23:27 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
lobbyModeContent: {
|
|
|
|
marginHorizontal: BaseTheme.spacing[3],
|
|
|
|
marginBottom: BaseTheme.spacing[4]
|
|
|
|
},
|
|
|
|
|
2022-02-17 14:51:00 +00:00
|
|
|
lobbyModeText: {
|
|
|
|
color: BaseTheme.palette.text01
|
|
|
|
},
|
|
|
|
|
2021-12-10 16:23:27 +00:00
|
|
|
lobbyModeLabel: {
|
2022-02-17 14:51:00 +00:00
|
|
|
color: BaseTheme.palette.text01,
|
2021-12-10 16:23:27 +00:00
|
|
|
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]
|
|
|
|
},
|
|
|
|
|
2022-02-17 14:51:00 +00:00
|
|
|
passwordContainerText: {
|
|
|
|
color: BaseTheme.palette.text01
|
|
|
|
},
|
|
|
|
|
2021-12-10 16:23:27 +00:00
|
|
|
passwordContainerControls: {
|
|
|
|
alignItems: 'center',
|
|
|
|
flexDirection: 'row',
|
|
|
|
justifyContent: 'space-between'
|
|
|
|
},
|
|
|
|
|
|
|
|
savedPasswordContainer: {
|
|
|
|
flexDirection: 'row',
|
|
|
|
width: 208
|
|
|
|
},
|
|
|
|
|
|
|
|
savedPasswordLabel: {
|
2022-02-17 14:51:00 +00:00
|
|
|
color: BaseTheme.palette.text01,
|
2021-12-10 16:23:27 +00:00
|
|
|
fontWeight: 'bold'
|
|
|
|
},
|
|
|
|
|
|
|
|
savedPassword: {
|
2022-02-17 14:51:00 +00:00
|
|
|
color: BaseTheme.palette.text01
|
2021-12-10 16:23:27 +00:00
|
|
|
},
|
|
|
|
|
2022-11-08 15:46:46 +00:00
|
|
|
customContainer: {
|
2021-12-10 16:23:27 +00:00
|
|
|
width: 208
|
|
|
|
},
|
|
|
|
|
2022-07-08 16:02:22 +00:00
|
|
|
passwordSetupButtonLabel: {
|
2023-01-12 10:11:27 +00:00
|
|
|
color: BaseTheme.palette.link01
|
2021-12-10 16:23:27 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
passwordSetRemotelyContainer: {
|
|
|
|
alignItems: 'center',
|
|
|
|
flexDirection: 'row',
|
|
|
|
justifyContent: 'space-between'
|
|
|
|
},
|
|
|
|
|
|
|
|
passwordSetRemotelyText: {
|
2023-01-12 10:11:27 +00:00
|
|
|
color: BaseTheme.palette.text01
|
2021-12-10 16:23:27 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
passwordSetRemotelyTextDisabled: {
|
2023-01-12 10:11:27 +00:00
|
|
|
color: BaseTheme.palette.text02
|
2021-12-10 16:23:27 +00:00
|
|
|
}
|
|
|
|
};
|