需要使用特定字体覆盖某些元素,这在 Chrome 上运行良好,但在任何其他浏览器(Safari、FireFox 等)上则不然。有什么遗漏的吗?
这是我的代码:
const theme = createMuiTheme({
MuiTypography: {
h1: {
fontFamily: 'Source Sans Pro'
}
}
}
});
const MyApp = () => {
return (
<ThemeProvider theme={theme}>
<CssBaseline />
<Typography variant='h1'>Source Sans Pro font applied on Chrome, but not on other browsers</Typography>
</ThemeProvider?
)
}
拉风的咖菲猫
相关分类