37 lines
745 B
JavaScript
37 lines
745 B
JavaScript
import { StyleSheet } from 'react-native';
|
|
|
|
export default StyleSheet.create({
|
|
container: {
|
|
alignItems: 'flex-start',
|
|
backgroundColor: '#F5FCFF',
|
|
flex: 1,
|
|
justifyContent: 'center',
|
|
paddingLeft: 10,
|
|
paddingRight: 10,
|
|
},
|
|
sectionWrap: {
|
|
marginBottom: 15,
|
|
},
|
|
avatarWrap: {
|
|
marginBottom: 40,
|
|
marginTop: 30,
|
|
textAlign: 'center',
|
|
},
|
|
groupHeading: {
|
|
fontSize: 18,
|
|
fontWeight: 'bold',
|
|
margin: 10,
|
|
textAlign: 'center',
|
|
},
|
|
hintText: {
|
|
color: '#666666',
|
|
fontSize: 14,
|
|
margin: 5,
|
|
},
|
|
textInput: {
|
|
fontSize: 24,
|
|
margin: 10,
|
|
textAlign: 'center',
|
|
},
|
|
});
|