mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Fix touch events in experimental video player
This commit is contained in:
parent
7d30057c37
commit
5051ee2d8e
2 changed files with 5 additions and 1 deletions
|
@ -29,7 +29,7 @@ const AppLayout = () => {
|
||||||
}, [ isDrawerActive, setIsDrawerActive ]);
|
}, [ isDrawerActive, setIsDrawerActive ]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Box sx={{ position: 'relative', display: 'flex' }}>
|
<Box sx={{ position: 'relative', display: 'flex', height: '100%' }}>
|
||||||
<ElevationScroll elevate={false}>
|
<ElevationScroll elevate={false}>
|
||||||
<AppBar
|
<AppBar
|
||||||
position='fixed'
|
position='fixed'
|
||||||
|
|
|
@ -7,6 +7,10 @@ $mui-bp-xl: 1536px;
|
||||||
|
|
||||||
$drawer-width: 240px;
|
$drawer-width: 240px;
|
||||||
|
|
||||||
|
#reactRoot {
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
// Fix main pages layout to work with drawer
|
// Fix main pages layout to work with drawer
|
||||||
.mainAnimatedPage {
|
.mainAnimatedPage {
|
||||||
@media all and (min-width: $mui-bp-md) {
|
@media all and (min-width: $mui-bp-md) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue