diff options
author | Desmond Kyeremeh <elDekyfin@gmail.com> | 2021-07-23 11:31:17 +0000 |
---|---|---|
committer | Desmond Kyeremeh <elDekyfin@gmail.com> | 2021-07-23 11:31:17 +0000 |
commit | d5a11fa77ad6a4ebda229b92f3666419c67cf516 (patch) | |
tree | fe594d1d5674a5a497e892d852d79e970ad0b215 /modern/src | |
parent | 618c453374c2adc5974c3a5805ffb8c883528bb5 (diff) | |
download | trackermap-web-d5a11fa77ad6a4ebda229b92f3666419c67cf516.tar.gz trackermap-web-d5a11fa77ad6a4ebda229b92f3666419c67cf516.tar.bz2 trackermap-web-d5a11fa77ad6a4ebda229b92f3666419c67cf516.zip |
Bottom nav styling
Diffstat (limited to 'modern/src')
-rw-r--r-- | modern/src/components/BottomNav.js | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/modern/src/components/BottomNav.js b/modern/src/components/BottomNav.js index 6aad1dd9..c47f0f63 100644 --- a/modern/src/components/BottomNav.js +++ b/modern/src/components/BottomNav.js @@ -27,9 +27,6 @@ const useStyles = makeStyles((theme) => ({ width: theme.dimensions.drawerWidthDesktop, }, }, - paper: { - borderRadius: '0px', - }, toolbar: { padding: theme.spacing(0, 2), display: 'flex', @@ -71,7 +68,7 @@ const BottomNav = ({ showOnDesktop }) => { return ( <div className={classes.container}> - <Paper className={classes.paper} elevation={isDesktop ? 1 : 3}> + <Paper square elevation={3}> <Toolbar className={classes.toolbar} disableGutters> {isDesktop ? ( |