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

Update mui based layout ui

This commit is contained in:
Bill Thornton 2023-11-28 10:26:14 -05:00
parent bfbdffdff5
commit 4e7f0136f7
14 changed files with 163 additions and 194 deletions

View file

@ -1,4 +1,6 @@
import Box from '@mui/material/Box';
import React, { useEffect } from 'react';
import { DRAWER_WIDTH } from './ResponsiveDrawer';
const Backdrop = () => {
useEffect(() => {
@ -8,7 +10,14 @@ const Backdrop = () => {
return (
<>
<div className='backdropContainer' />
<Box
className='backdropContainer'
sx={{
left: {
sm: DRAWER_WIDTH
}
}}
/>
<div className='backgroundContainer' />
</>
);