NERDDISCO's picture
feat: added base components, updated the readme, extended summarization
d378496
raw
history blame
No virus
920 Bytes
import { Divider, DividerProps, Paper, PaperProps } from "@mui/material";
import { styled } from "@mui/material/styles";
export const SectionBox = styled(Paper)<PaperProps>(({ theme }) => ({
display: "flex",
padding: 15,
paddingTop: 30,
paddingBottom: 30,
marginBottom: 20,
background: `linear-gradient(to bottom right, ${theme.palette.primary.main} 0%, ${theme.palette.secondary.main} 100%)`,
}));
export const HighlightBox = styled(Paper)<PaperProps>(({ theme }) => ({
display: "flex",
alignItems: "center",
justifyContent: "center",
padding: 10,
borderBottom: `3px solid transparent`,
borderImage: `linear-gradient(to bottom right, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%)`,
borderImageSlice: 1,
}));
export const DividerBox = styled(Divider)<DividerProps>(({ theme }) => ({
marginTop: 20,
marginBottom: 20,
background: "transparent",
border: "none",
}));