我正在使用来自Material的排版元素。它有一个css类MuiTypography H1。我希望在代码库中的所有地方都禁用它,也就是全球范围的。
<Typography
variant="h1"
sx={{
width: '100px',
height: '55px',
fontSize: '20px',
fontWeight: 500,
lineHeight: '1.2',
WebkitLineClamp: 4,
WebkitBoxOrient: 'vertical',
marginTop: '11px',
}}
>
Title
</Typography>
发布于 2022-02-21 11:39:11
您可以使用makeTheme,然后为整个应用程序中的所有排版标记生成一种样式:看看这里的文档:https://mui.com/customization/theming/
import { createMuiTheme } from '@material-ui/core/styles'
const theme = createMuiTheme({
typography: {
body1: {
fontWeight: 500,
fontSize: 18,
color: "green"
}
}
})
export default theme;https://stackoverflow.com/questions/71205071
复制相似问题