2025-10-25 11:39:24 +02:00

9 lines
208 B
TypeScript

import { styled } from "@mui/system";
export const MainContent = styled("div")(({ theme }) => ({
marginLeft: "240px",
padding: theme.spacing(3),
minHeight: "100vh",
width: "calc(100% - 240px)",
}));