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:
commit
60af8a68f8
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