9 lines
208 B
TypeScript
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)",
|
|
}));
|