在 React 中覆盖 Material UI 中的样式
Overriding Styles in Material UI in React
我在 React 中覆盖 Material UI 主题中的样式时遇到问题。
我想自定义 columnsContainer
的 border
,但它不起作用。只有 root
运行良好。
MuiDataGrid.js
export default {
root: {
backgroundColor: "white",
border: `1px solid green`,
"& .columnsContainer": {
borderBottom: `1px solid 'blue' !important`
}
}
};
我在 React 中覆盖 Material UI 主题中的样式时遇到问题。
我想自定义 columnsContainer
的 border
,但它不起作用。只有 root
运行良好。
MuiDataGrid.js
export default {
root: {
backgroundColor: "white",
border: `1px solid green`,
"& .columnsContainer": {
borderBottom: `1px solid 'blue' !important`
}
}
};