Rocket.Chat.ReactNative/app/containers/Passcode/Base/styles.js

78 lines
1.3 KiB
JavaScript
Raw Normal View History

2020-04-23 16:08:50 +00:00
import { StyleSheet } from 'react-native';
import grid from './grid';
export default StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
2020-04-24 11:56:55 +00:00
alignItems: 'center'
2020-04-23 16:08:50 +00:00
},
viewTitle: {
flexDirection: 'column',
justifyContent: 'flex-end',
alignItems: 'center',
flex: 2
},
row: {
flex: 0,
flexShrink: 1,
alignItems: 'center',
height: grid.unit * 5.5
},
colButtonCircle: {
flex: 0,
marginLeft: grid.unit / 2,
marginRight: grid.unit / 2,
alignItems: 'center',
width: grid.unit * 4,
height: grid.unit * 4
},
text: {
fontSize: grid.unit * 2,
fontWeight: '200'
},
2020-04-24 11:56:55 +00:00
deleteText: {
fontSize: grid.unit * 1.2,
fontWeight: '200'
},
2020-04-23 16:08:50 +00:00
buttonCircle: {
alignItems: 'center',
justifyContent: 'center',
width: grid.unit * 4,
height: grid.unit * 4,
2020-04-23 19:37:00 +00:00
borderRadius: grid.unit * 2,
borderWidth: 1
2020-04-23 16:08:50 +00:00
},
textTitle: {
fontSize: 20,
fontWeight: '200',
lineHeight: grid.unit * 2.5
},
textSubtitle: {
fontSize: grid.unit,
fontWeight: '200',
textAlign: 'center'
},
2020-04-23 16:38:27 +00:00
flexCirclePasscode: {
2020-04-23 16:08:50 +00:00
flex: 2,
justifyContent: 'center',
alignItems: 'center'
},
2020-04-23 16:38:27 +00:00
topViewCirclePasscode: {
2020-04-23 16:08:50 +00:00
flexDirection: 'row',
height: 'auto',
justifyContent: 'center',
alignItems: 'center'
},
viewCircles: {
justifyContent: 'center',
alignItems: 'center'
},
grid: {
justifyContent: 'flex-start',
width: '100%',
flex: 7
}
});