Auto stash before merge of "master" and "origin/master"

Minor styling changes
This commit is contained in:
Erick Clark 2018-05-06 12:16:55 -05:00
parent 03158e3c44
commit 31ce678905
3 changed files with 6 additions and 3 deletions

View file

@ -17,7 +17,10 @@ export const Thumbnail = ({ thumb }: { thumb: ?string }) => (
width: theme.itemTile.thumbnailSize,
borderRadius: Math.round(theme.itemTile.thumbnailSize / 2),
backgroundColor: theme.itemTile.thumbnailColor,
margin: 10,
marginLeft: 15,
marginRight: 15,
marginTop: 5,
marginBottom: 5,
}}
>
{!!thumb && (

View file

@ -30,7 +30,7 @@ export const TextButton = ({ text, onPress, style = {} }: { text: string, onPres
return (
<TouchableOpacity onPress={onPress}>
<View style={{ flexShrink: 0, ...style }}>
<Text style={{ color: theme.palette.accentColor, padding: 12, fontSize: 17 }}>{text}</Text>
<Text style={{ color: theme.palette.accentColor, padding: 12, fontSize: 16 }}>{text}</Text>
</View>
</TouchableOpacity>
);

View file

@ -75,7 +75,7 @@ export default {
},
itemPlaceStyle: {
color: COLOR.grey700,
paddingTop: 3,
paddingTop: 1,
},
availableCountStyle: {
fontSize: 25,