This commit is contained in:
tangly1024
2022-12-26 21:56:19 +08:00
parent f34600dc66
commit 7224b102fc
4 changed files with 7 additions and 3 deletions

View File

@@ -1,2 +1,2 @@
# 环境变量 @see https://www.nextjs.cn/docs/basic-features/environment-variables
NEXT_PUBLIC_VERSION=3.7.0
NEXT_PUBLIC_VERSION=3.7.1

View File

@@ -1,6 +1,6 @@
{
"name": "notion-next",
"version": "3.7.0",
"version": "3.7.1",
"homepage": "https://github.com/tangly1024/NotionNext.git",
"license": "MIT",
"repository": {

View File

@@ -1981,3 +1981,7 @@ pre[class*="language-mermaid"] {
code.language-mermaid {
display:none
}
.code-toolbar{
@apply w-full;
}

View File

@@ -71,7 +71,7 @@ const LayoutBase = props => {
id="container-inner"
className="pt-14 w-full mx-auto lg:flex lg:space-x-4 justify-center"
>
<div className="w-full max-w-4xl overflow-x-hidden">
<div className="w-full max-w-4xl overflow-x-hidden scroll-hidden">
{onLoading ? <LoadingCover /> : children}
</div>
<SideRight {...props} slot={rightAreaSlot} />