Files
NotionNext/themes/gitbook/style.js
2024-06-03 18:02:23 +08:00

23 lines
423 B
JavaScript

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