From 31ce678905e8be1e178b6167371fcc1b4eb05775 Mon Sep 17 00:00:00 2001 From: Erick Clark Date: Sun, 6 May 2018 12:16:55 -0500 Subject: [PATCH] Auto stash before merge of "master" and "origin/master" Minor styling changes --- js/components/ItemTile.js | 5 ++++- js/modals/Modal.js | 2 +- js/ui-theme.js | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/js/components/ItemTile.js b/js/components/ItemTile.js index b03dded..ef728f5 100644 --- a/js/components/ItemTile.js +++ b/js/components/ItemTile.js @@ -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 && ( diff --git a/js/modals/Modal.js b/js/modals/Modal.js index 1cec605..4b5a743 100644 --- a/js/modals/Modal.js +++ b/js/modals/Modal.js @@ -30,7 +30,7 @@ export const TextButton = ({ text, onPress, style = {} }: { text: string, onPres return ( - {text} + {text} ); diff --git a/js/ui-theme.js b/js/ui-theme.js index 09980af..5e52e7f 100644 --- a/js/ui-theme.js +++ b/js/ui-theme.js @@ -75,7 +75,7 @@ export default { }, itemPlaceStyle: { color: COLOR.grey700, - paddingTop: 3, + paddingTop: 1, }, availableCountStyle: { fontSize: 25,