Fix colors for card and header border on iOS

This commit is contained in:
Brent Vatne 2018-02-22 12:58:33 -08:00
parent 065fdf61d8
commit 6dda8c30a9
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ class Card extends React.Component {
const styles = StyleSheet.create({
main: {
backgroundColor: '#E9E9EF',
backgroundColor: '#EFEFF4',
bottom: 0,
left: 0,
position: 'absolute',

View File

@ -503,7 +503,7 @@ let platformContainerStyles;
if (Platform.OS === 'ios') {
platformContainerStyles = {
borderBottomWidth: StyleSheet.hairlineWidth,
borderBottomColor: 'rgba(0, 0, 0, .3)',
borderBottomColor: '#A7A7AA',
};
} else {
platformContainerStyles = {