From 879b2c91beafd29e83aad89b72d4a27ffdf9b8cd Mon Sep 17 00:00:00 2001 From: James Langley Date: Thu, 10 Sep 2020 13:27:19 +0100 Subject: [PATCH] Add marginBottom to actionButton (#15) --- src/style.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/style.js b/src/style.js index 5313c2d..da9f7e4 100644 --- a/src/style.js +++ b/src/style.js @@ -47,7 +47,8 @@ const useStyles = makeStyles(theme => ({ }, actionButton: { marginLeft: theme.spacing(1), - marginRight: theme.spacing(1) + marginRight: theme.spacing(1), + marginBottom: theme.spacing(1), } }))