96 lines
1.7 KiB
JavaScript
96 lines
1.7 KiB
JavaScript
import { StyleSheet } from 'react-native';
|
|
|
|
import grid from './grid';
|
|
|
|
export default StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
// width: '100%'
|
|
},
|
|
viewTitle: {
|
|
flexDirection: 'column',
|
|
justifyContent: 'flex-end',
|
|
alignItems: 'center',
|
|
flex: 2
|
|
},
|
|
row: {
|
|
flex: 0,
|
|
flexShrink: 1,
|
|
alignItems: 'center',
|
|
height: grid.unit * 5.5
|
|
},
|
|
rowWithEmpty: {
|
|
flexShrink: 0,
|
|
justifyContent: 'flex-end'
|
|
},
|
|
colButtonCircle: {
|
|
flex: 0,
|
|
marginLeft: grid.unit / 2,
|
|
marginRight: grid.unit / 2,
|
|
alignItems: 'center',
|
|
width: grid.unit * 4,
|
|
height: grid.unit * 4
|
|
},
|
|
colEmpty: {
|
|
flex: 0,
|
|
marginLeft: grid.unit / 2,
|
|
marginRight: grid.unit / 2,
|
|
width: grid.unit * 4,
|
|
height: grid.unit * 4
|
|
},
|
|
colIcon: {
|
|
alignSelf: 'center',
|
|
justifyContent: 'center',
|
|
alignItems: 'center',
|
|
flexDirection: 'column'
|
|
},
|
|
text: {
|
|
fontSize: grid.unit * 2,
|
|
fontWeight: '200'
|
|
},
|
|
buttonCircle: {
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
width: grid.unit * 4,
|
|
height: grid.unit * 4,
|
|
backgroundColor: 'rgb(242, 245, 251)',
|
|
borderRadius: grid.unit * 2
|
|
},
|
|
textTitle: {
|
|
fontSize: 20,
|
|
fontWeight: '200',
|
|
lineHeight: grid.unit * 2.5
|
|
},
|
|
textSubtitle: {
|
|
fontSize: grid.unit,
|
|
fontWeight: '200',
|
|
textAlign: 'center'
|
|
},
|
|
flexCirclePassword: {
|
|
flex: 2,
|
|
justifyContent: 'center',
|
|
alignItems: 'center'
|
|
},
|
|
topViewCirclePassword: {
|
|
flexDirection: 'row',
|
|
height: 'auto',
|
|
justifyContent: 'center',
|
|
alignItems: 'center'
|
|
},
|
|
viewCircles: {
|
|
justifyContent: 'center',
|
|
alignItems: 'center'
|
|
},
|
|
textDeleteButton: {
|
|
fontWeight: '200',
|
|
marginTop: 5
|
|
},
|
|
grid: {
|
|
justifyContent: 'flex-start',
|
|
width: '100%',
|
|
flex: 7
|
|
}
|
|
});
|