mirror of
https://github.com/d0zingcat/NotionNext.git
synced 2026-05-14 07:26:52 +00:00
21 lines
371 B
JavaScript
21 lines
371 B
JavaScript
/* eslint-disable react/no-unknown-property */
|
|
|
|
import { siteConfig } from '@/lib/config'
|
|
|
|
/**
|
|
* 这里的css样式对全局生效
|
|
* 主题客制化css
|
|
* @returns
|
|
*/
|
|
const GlobalStyle = () => {
|
|
// 从NotionConfig中读取样式
|
|
const GLOBAL_CSS = siteConfig('GLOBAL_CSS')
|
|
return (<style jsx global>{`
|
|
|
|
${GLOBAL_CSS}
|
|
|
|
`}</style>)
|
|
}
|
|
|
|
export { GlobalStyle }
|