1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Merge pull request #5638 from grafixeyehero/TV-Guide-only-covers-half-the-screen

This commit is contained in:
Bill Thornton 2024-05-31 03:17:41 -04:00 committed by GitHub
commit 60af8a68f8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;