Backport pull request #6015 from jellyfin-web/release-10.9.z

Fix touch events in experimental video player

Original-merge: 6b1352a8559d6481555e6b352fba8e6f342e3872

Merged-by: thornbill <thornbill@users.noreply.github.com>

Backported-by: Joshua M. Boniface <joshua@boniface.me>
This commit is contained in:
thornbill
2024-09-07 18:07:36 -04:00
committed by Joshua M. Boniface
parent 67201033c6
commit 3709b99d33
2 changed files with 5 additions and 1 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ export const Component = () => {
}, [ isDrawerActive, setIsDrawerActive ]);
return (
<Box sx={{ position: 'relative', display: 'flex' }}>
<Box sx={{ position: 'relative', display: 'flex', height: '100%' }}>
<ElevationScroll elevate={false}>
<AppBar
position='fixed'
+4
View File
@@ -7,6 +7,10 @@ $mui-bp-xl: 1536px;
$drawer-width: 240px;
#reactRoot {
height: 100%;
}
// Fix main pages layout to work with drawer
.mainAnimatedPage {
@media all and (min-width: $mui-bp-md) {