我为排版定义了主题,但字型家族的梅按钮,不改变。
typography: {
fontFamily: ["Baloo Bhaijaan 2", "cursive"].join(", "),
button: {
fontFamily: "Baloo Bhaijaan 2",
fontWeight: 500,
color: "#ffffff !important",
},},
发布于 2022-08-11 23:24:38
这个修改后的示例是在梅西博士中提供的,用于自定义物料-UI版本5中的组件:
const theme = createTheme({
components: {
// Name of the component
MuiButton: {
styleOverrides: {
// Name of the slot
root: {
// Some CSS
fontFamily: "Baloo Bhaijaan 2",
fontWeight: 500,
color: "#ffffff !important"
},
},
},
},
});https://stackoverflow.com/questions/73326598
复制相似问题