Reflexjs
文档区段库指南GitHub
/
,

全局样式

从主题添加全局样式。


使用 useRootStyles 标志并在您的主题中键入 styles.root 以设置任何元素的与主题相关的样式。

theme.js
const theme = {
useRootStyles: true,
styles: {
// Applies to <html />.
root: {
m: 0,
p: 0,
"*": {
boxSizing: "border-box",
},
// Applies to <body />
body: {
fontSize: "sm",
},
},
},
}

useRootStyles: truestyles.root 应用到 html

useRootStyles: falsestyles.root 应用到 body

伪选择器颜色模式

© 2022 Reflexjs

文档区段库指南GitHub