style.js
840 Bytes
import { StyleSheet } from 'react-native'
import { setUnit } from '../../libs/utils'
export const styles = StyleSheet.create({
body: {
flex: 1,
backgroundColor: 'rgba(245,246,247,1)',
alignItems: 'center'
},
input: {
width: '100%',
height: setUnit(100),
backgroundColor: 'rgb(255,255,255)',
borderTopColor: '#DDDDDD',
borderBottomColor: '#DDDDDD',
borderTopWidth: 1,
borderBottomWidth: 1,
fontSize: setUnit(29),
padding: setUnit(30),
color: 'rgb(0,0,0)'
},
button: {
width: setUnit(400),
height: setUnit(60),
paddingTop: setUnit(20)
},
loading: {
position: 'absolute',
top: 0,
left: 0,
zIndex: 5,
width: '100%',
height: '100%'
}
})