Files
NotionNext/themes/example/style.js
2023-07-15 11:57:51 +08:00

18 lines
309 B
JavaScript

/* eslint-disable react/no-unknown-property */
/**
* 此处样式只对当前主题生效
* 此处不支持tailwindCSS的 @apply 语法
* @returns
*/
const Style = () => {
return <style jsx global>{`
// 底色
.dark body{
background-color: black;
}
`}</style>
}
export { Style }