diff options
author | eug-vs <eug-vs@keemail.me> | 2020-08-11 22:00:10 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2020-08-11 22:00:10 +0300 |
commit | a9d713a73b65847af419016d2d97c4e8dab950f9 (patch) | |
tree | 653bcd474bc0aff2c4bd4c7dfba19acf89c81c81 /src/components/Header/BottomBar.tsx | |
parent | 4bcabf751b8292fee696db5e027f38b1838b0be6 (diff) | |
download | which-ui-a9d713a73b65847af419016d2d97c4e8dab950f9.tar.gz |
refactor: cleanup header components
Diffstat (limited to 'src/components/Header/BottomBar.tsx')
-rw-r--r-- | src/components/Header/BottomBar.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/Header/BottomBar.tsx b/src/components/Header/BottomBar.tsx index 57efb3e..67fe219 100644 --- a/src/components/Header/BottomBar.tsx +++ b/src/components/Header/BottomBar.tsx @@ -8,7 +8,7 @@ interface PropTypes { notifications: JSX.Element; } -const useStyles = makeStyles(theme => ({ +const useStyles = makeStyles({ root: { top: 'auto', bottom: 0 @@ -17,7 +17,7 @@ const useStyles = makeStyles(theme => ({ display: 'flex', justifyContent: 'space-around' } -})); +}); const BottomBar: React.FC<PropTypes> = React.memo(props => { |