remove string interpolation for theme spacing

Co-authored-by: Fredrik Adelöw <freben@gmail.com>
Signed-off-by: Fredrik Adelöw <freben@gmail.com>
This commit is contained in:
Rickard Dybeck
2021-04-19 12:46:33 -04:00
committed by Fredrik Adelöw
parent bd0e05632a
commit 8e09c5fa2d
@@ -32,7 +32,7 @@ const useStyles = makeStyles(theme => ({
borderRight: `1px solid ${theme.palette.grey[500]}`,
textAlign: 'center',
color: 'white', // need to enforce this color since it needs to stand out against colored background
paddingLeft: `${theme.spacing(1)}`,
paddingLeft: theme.spacing(1),
paddingRight: `${theme.spacing(1)}`,
},
countRoundedRectangle: {