Files
NotionNext/themes/example/style.js
tangly1024.com a990d3c632 theme-style
2023-07-12 16:04:39 +08:00

18 lines
286 B
JavaScript

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