mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Backport pull request #5638 from jellyfin-web/release-10.9.z
Fix: Tv guide only covers half the screen in Experimental Layout
Original-merge: 60af8a68f8
Merged-by: thornbill <thornbill@users.noreply.github.com>
Backported-by: Joshua M. Boniface <joshua@boniface.me>
This commit is contained in:
parent
1fc471a0ed
commit
fcffaab50e
1 changed files with 15 additions and 1 deletions
|
@ -1,4 +1,5 @@
|
||||||
import React, { FC, useCallback, useEffect, useRef } from 'react';
|
import React, { FC, useCallback, useEffect, useRef } from 'react';
|
||||||
|
import Box from '@mui/material/Box';
|
||||||
import Guide from 'components/guide/guide';
|
import Guide from 'components/guide/guide';
|
||||||
import 'material-design-icons-iconfont';
|
import 'material-design-icons-iconfont';
|
||||||
import 'elements/emby-programcell/emby-programcell';
|
import 'elements/emby-programcell/emby-programcell';
|
||||||
|
@ -45,7 +46,20 @@ const GuideView: FC = () => {
|
||||||
};
|
};
|
||||||
}, [initGuide]);
|
}, [initGuide]);
|
||||||
|
|
||||||
return <div ref={tvGuideContainerRef} />;
|
return <Box
|
||||||
|
ref={tvGuideContainerRef}
|
||||||
|
className='absolutePageTabContent'
|
||||||
|
sx={{
|
||||||
|
display: 'flex !important',
|
||||||
|
width: 'auto',
|
||||||
|
paddingTop: '0',
|
||||||
|
paddingBottom: '0 !important',
|
||||||
|
top: {
|
||||||
|
xs: '6.9em !important',
|
||||||
|
lg: '4em !important'
|
||||||
|
}
|
||||||
|
}}
|
||||||
|
/>;
|
||||||
};
|
};
|
||||||
|
|
||||||
export default GuideView;
|
export default GuideView;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue