fix: 处理项目配置栏底部在小屏幕上显示不全问题 (#232)

fix: 处理项目配置栏底部在小屏幕上显示不全问题
This commit is contained in:
xc_Arxher 2022-04-07 17:41:20 +08:00 committed by GitHub
parent 9797534458
commit bafd9522e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -54,7 +54,7 @@ emitter.on("openPanel", () => {
.right-panel { .right-panel {
width: 100%; width: 100%;
max-width: 300px; max-width: 315px;
height: 100vh; height: 100vh;
position: fixed; position: fixed;
top: 0; top: 0;
@ -105,8 +105,8 @@ emitter.on("openPanel", () => {
.right-panel-items { .right-panel-items {
margin-top: 60px; margin-top: 60px;
height: 100vh; height: calc(100vh - 60px);
overflow: auto; overflow-y: auto;
} }
.project-configuration { .project-configuration {