gitbook 布局交互优化

This commit is contained in:
tangly1024.com
2024-06-03 18:02:23 +08:00
parent 1f5b77406a
commit 71106860bd
14 changed files with 195 additions and 124 deletions

View File

@@ -5,14 +5,18 @@
* @returns
*/
const Style = () => {
return <style jsx global>{`
// 底色
.dark body{
return (
<style jsx global>{`
// 底色
.dark body {
background-color: black;
}
}
`}</style>
.bottom-button-group {
box-shadow: 0px -3px 10px 0px rgba(0, 0, 0, 0.1);
}
`}</style>
)
}
export { Style }