fix: add padding at the bottom of the layout, to accommodate the audio player (relates to #132)

This commit is contained in:
Deluan 2020-03-31 14:52:54 -04:00
parent 7fec503b72
commit 7aa182e33d

View file

@ -1,14 +1,30 @@
import React from 'react' import React from 'react'
import { useSelector } from 'react-redux' import { useSelector } from 'react-redux'
import { Layout } from 'react-admin' import { Layout } from 'react-admin'
import { makeStyles } from '@material-ui/core/styles'
import Menu from './Menu' import Menu from './Menu'
import AppBar from './AppBar' import AppBar from './AppBar'
import { DarkTheme, LightTheme } from '../themes' import { DarkTheme, LightTheme } from '../themes'
const useStyles = makeStyles({
root: { paddingBottom: '80px' }
})
export default (props) => { export default (props) => {
const classes = useStyles()
const theme = useSelector((state) => const theme = useSelector((state) =>
state.theme === 'dark' ? DarkTheme : LightTheme state.theme === 'dark' ? DarkTheme : LightTheme
) )
return <Layout {...props} menu={Menu} appBar={AppBar} theme={theme} /> return (
<>
<Layout
{...props}
className={classes.root}
menu={Menu}
appBar={AppBar}
theme={theme}
/>
</>
)
} }