1
0
Fork 0
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:
grafixeyehero 2024-06-01 18:42:07 -04:00 committed by Joshua M. Boniface
parent 1fc471a0ed
commit fcffaab50e

View file

@ -1,4 +1,5 @@
import React, { FC, useCallback, useEffect, useRef } from 'react';
import Box from '@mui/material/Box';
import Guide from 'components/guide/guide';
import 'material-design-icons-iconfont';
import 'elements/emby-programcell/emby-programcell';
@ -45,7 +46,20 @@ const GuideView: FC = () => {
};
}, [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;