mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Backport pull request #6015 from jellyfin-web/release-10.9.z
Fix touch events in experimental video player
Original-merge: 6b1352a855
Merged-by: thornbill <thornbill@users.noreply.github.com>
Backported-by: Joshua M. Boniface <joshua@boniface.me>
This commit is contained in:
parent
67201033c6
commit
3709b99d33
2 changed files with 5 additions and 1 deletions
|
@ -29,7 +29,7 @@ export const Component = () => {
|
||||||
}, [ 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