Add GitBook theme structure with Traditional Chinese docs

This commit is contained in:
2025-09-17 13:06:47 +08:00
parent 6f6671a024
commit 49dab41935
44 changed files with 2675 additions and 0 deletions

22
gitbook/style.js Normal file
View File

@@ -0,0 +1,22 @@
/* 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 }