blog / themes /gitbook /style.js
sandy-try's picture
Upload 699 files
1b72d7e verified
raw
history blame contribute delete
314 Bytes
/* eslint-disable react/no-unknown-property */
/**
* 此处样式只对当前主题生效
* 此处不支持tailwindCSS的 @apply 语法
* @returns
*/
const Style = () => {
return <style jsx global>{`
// 底色
.dark body{
background-color: black;
}
`}</style>
}
export { Style }