ente/apps/photos/src/components/EnteDrawer.tsx
2023-04-18 17:29:40 -04:00

11 lines
263 B
TypeScript

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