2019-06-11 14:01:40 +00:00
|
|
|
import { StyleSheet } from 'react-native';
|
|
|
|
|
|
|
|
import sharedStyles from '../Styles';
|
|
|
|
|
|
|
|
export default StyleSheet.create({
|
|
|
|
sectionSeparatorBorder: {
|
|
|
|
...sharedStyles.separatorVertical,
|
2019-12-11 23:01:12 +00:00
|
|
|
height: 36
|
2019-09-03 19:27:57 +00:00
|
|
|
},
|
|
|
|
listWithoutBorderBottom: {
|
|
|
|
borderBottomWidth: 0
|
|
|
|
},
|
|
|
|
infoContainer: {
|
|
|
|
padding: 15,
|
2019-12-11 23:01:12 +00:00
|
|
|
marginBottom: 40
|
2019-09-03 19:27:57 +00:00
|
|
|
},
|
|
|
|
infoText: {
|
|
|
|
fontSize: 14,
|
|
|
|
...sharedStyles.textRegular
|
2019-06-11 14:01:40 +00:00
|
|
|
}
|
|
|
|
});
|