2019-06-11 14:01:40 +00:00
|
|
|
import { StyleSheet } from 'react-native';
|
|
|
|
|
|
|
|
import { COLOR_BACKGROUND_CONTAINER } from '../../constants/colors';
|
|
|
|
import sharedStyles from '../Styles';
|
|
|
|
|
|
|
|
export default StyleSheet.create({
|
|
|
|
sectionSeparatorBorder: {
|
|
|
|
...sharedStyles.separatorVertical,
|
|
|
|
backgroundColor: COLOR_BACKGROUND_CONTAINER,
|
|
|
|
height: 10
|
2019-08-23 13:18:47 +00:00
|
|
|
},
|
|
|
|
listWithoutBorderBottom: {
|
|
|
|
borderBottomWidth: 0
|
|
|
|
},
|
|
|
|
infoContainer: {
|
|
|
|
padding: 15,
|
|
|
|
paddingBottom: 40,
|
|
|
|
backgroundColor: COLOR_BACKGROUND_CONTAINER
|
|
|
|
},
|
|
|
|
infoText: {
|
|
|
|
fontSize: 14,
|
|
|
|
...sharedStyles.textColorNormal,
|
|
|
|
...sharedStyles.textRegular
|
2019-06-11 14:01:40 +00:00
|
|
|
}
|
|
|
|
});
|