ente/packages/shared/components/EnteDrawer.tsx

11 lines
263 B
TypeScript
Raw Normal View History

2023-12-24 21:24:31 +00:00
import { Drawer, styled } from '@mui/material';
export const EnteDrawer = styled(Drawer)(({ theme }) => ({
'& .MuiPaper-root': {
maxWidth: '375px',
width: '100%',
scrollbarWidth: 'thin',
padding: theme.spacing(1),
},
}));