Files
NotionNext/themes/landing-2/style.js
tangly1024.com 829d1db363 theme landing-2
2024-02-07 18:58:17 +08:00

19 lines
287 B
JavaScript

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