luffyZh / dynamic-antd-theme

🌈 A simple plugin to dynamic change ant-design theme whether less or css.
https://dynamic-antd-theme.luffyzh.now.sh/
MIT License
250 stars 29 forks source link

Does this can change the fontSize of the whole website? #76

Closed xmchenlx closed 3 years ago

xmchenlx commented 3 years ago

Does this can change the fontSize of the whole website through the specific variable?

luffyZh commented 3 years ago

@xmchenlx 看起来是可以的,我这边在浏览器简单尝试了一下,你可以通过 cssVar 传递如下的参数,举例子所有的文字都改:

const cssVar = `
* {
 font-size: 14px
}
`

效果应该如下图所示:

image

xmchenlx commented 3 years ago

更改颜色我没有填写,它可以默认更改所有组件,但携带参数的话组件应该写在哪里?也是直接写,组件不需要包含在页面外面一级吗?我在example示例中没有看到类似的例子