From ff76bf2f680df851bfc80a3250b3161740566034 Mon Sep 17 00:00:00 2001 From: Justin Campbell Date: Mon, 17 Aug 2020 08:32:26 -0400 Subject: [PATCH] Simplify ItemView content padding --- src/ItemView.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ItemView.js b/src/ItemView.js index e0c000a..7d7b2da 100644 --- a/src/ItemView.js +++ b/src/ItemView.js @@ -6,7 +6,7 @@ function ItemView(props){ const useStyles = makeStyles((theme) => ({ "paperMargin": { - paddingLeft: theme.spacing(3), + padding: theme.spacing(1), } })); @@ -21,7 +21,7 @@ return( {/* */} {props.activeItem["content"] ? props.activeItem["content"].map(line => ( - + {line} )): "" }