mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-04 21:17:37 +03:00
fix: add padding at the bottom of the layout, to accommodate the audio player (relates to #132)
This commit is contained in:
parent
7fec503b72
commit
7aa182e33d
1 changed files with 17 additions and 1 deletions
|
@ -1,14 +1,30 @@
|
|||
import React from 'react'
|
||||
import { useSelector } from 'react-redux'
|
||||
import { Layout } from 'react-admin'
|
||||
import { makeStyles } from '@material-ui/core/styles'
|
||||
import Menu from './Menu'
|
||||
import AppBar from './AppBar'
|
||||
import { DarkTheme, LightTheme } from '../themes'
|
||||
|
||||
const useStyles = makeStyles({
|
||||
root: { paddingBottom: '80px' }
|
||||
})
|
||||
|
||||
export default (props) => {
|
||||
const classes = useStyles()
|
||||
const theme = useSelector((state) =>
|
||||
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}
|
||||
/>
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue