我正在使用Material-UI ListItem组件,并且希望摆脱默认的背景色。我已经尝试过使用类,但是我的值被以下内容覆盖:
如何禁用此默认规则?
答案 0 :(得分:0)
您可以全局覆盖任何Material UI组件的样式。
在应用程序中查找调用createMuiTheme
的位置,然后添加和overrides
字段。
const theme = createMuiTheme({
palette: {
/* you should already have stuff here, keep it */
},
typography: {
/* you should already have stuff here, keep it */
},
overrides: {
MuiListItem: {
root: {
backgroundColor: "red",
},
},
},
});