Files
Eventment/app/components/Profile/Profile.styles.js
Mike Fitzpatrick c146884636 - Wiring up nom and phone registration bits
- Added guided registration
2019-08-14 11:18:21 -04:00

37 lines
744 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,
},
emailWrap: {
marginBottom: 40,
marginTop: 20,
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',
},
});