2019-08-23 16:24:15 +00:00
|
|
|
import { StyleSheet } from 'react-native';
|
|
|
|
|
|
|
|
import sharedStyles from '../Styles';
|
|
|
|
|
|
|
|
export default StyleSheet.create({
|
|
|
|
sectionSeparatorBorder: {
|
|
|
|
height: 10
|
|
|
|
},
|
|
|
|
marginBottom: {
|
2019-12-04 16:39:53 +00:00
|
|
|
height: 30
|
2019-08-23 16:24:15 +00:00
|
|
|
},
|
|
|
|
contentContainer: {
|
|
|
|
marginVertical: 10
|
|
|
|
},
|
|
|
|
infoText: {
|
|
|
|
...sharedStyles.textRegular,
|
|
|
|
fontSize: 13,
|
|
|
|
paddingHorizontal: 15,
|
2019-12-04 16:39:53 +00:00
|
|
|
paddingVertical: 10
|
2019-08-23 16:24:15 +00:00
|
|
|
},
|
|
|
|
sectionTitle: {
|
|
|
|
...sharedStyles.separatorBottom,
|
|
|
|
paddingHorizontal: 15,
|
|
|
|
paddingVertical: 10,
|
2019-12-04 16:39:53 +00:00
|
|
|
fontSize: 14
|
2019-08-23 16:24:15 +00:00
|
|
|
},
|
|
|
|
pickerText: {
|
|
|
|
...sharedStyles.textRegular,
|
2019-12-04 16:39:53 +00:00
|
|
|
fontSize: 16
|
2019-08-23 16:24:15 +00:00
|
|
|
}
|
|
|
|
});
|