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

Merge pull request #5414 from thornbill/fix-experimental-playing-bar

This commit is contained in:
Bill Thornton 2024-04-24 08:04:39 -04:00 committed by GitHub
commit c3efdd0e8a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 0 deletions

View file

@ -10,6 +10,11 @@ $mui-bp-xl: 1536px;
position: relative; position: relative;
} }
// Ensure the footer renders over the drawer
.appfooter {
z-index: 1201 !important; // mui drawer uses z-index 1200
}
// Hide some items from the user "settings" page that are in the drawer // Hide some items from the user "settings" page that are in the drawer
#myPreferencesMenuPage { #myPreferencesMenuPage {
.lnkQuickConnectPreferences, .lnkQuickConnectPreferences,

View file

@ -31,6 +31,7 @@ const ResponsiveDrawer: FC<ResponsiveDrawerProps> = ({
flexShrink: 0, flexShrink: 0,
'& .MuiDrawer-paper': { '& .MuiDrawer-paper': {
width: DRAWER_WIDTH, width: DRAWER_WIDTH,
paddingBottom: '4.2rem', // Padding for now playing bar
boxSizing: 'border-box' boxSizing: 'border-box'
} }
}} }}