Components

Overrides the component styles of the mui inside src/theme/index

components: {
MuiAvatar: {
styleOverrides: {
fallback: {
height: "75%",
width: "75%",
},
},
},
MuiButton: {
styleOverrides: {
root: {
textTransform: "none",
borderRadius: "4px",
color: "inherit",
boxShadow: "none",
padding: "0.6rem 1.5rem",
},
outlinedPrimary: {
borderColor: primary.main,
color: primary.main,
},
containedPrimary: {
color: "white",
"&:hover": {
backgroundColor: primary.main,
boxShadow: "none",
},
},
},
}