From bafd9522e06b31a757ebc4b1abf6c8b9cba6bfd8 Mon Sep 17 00:00:00 2001 From: xc_Arxher <35291465+xu-Aurora@users.noreply.github.com> Date: Thu, 7 Apr 2022 17:41:20 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=A4=84=E7=90=86=E9=A1=B9=E7=9B=AE?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=E6=A0=8F=E5=BA=95=E9=83=A8=E5=9C=A8=E5=B0=8F?= =?UTF-8?q?=E5=B1=8F=E5=B9=95=E4=B8=8A=E6=98=BE=E7=A4=BA=E4=B8=8D=E5=85=A8?= =?UTF-8?q?=E9=97=AE=E9=A2=98=20(#232)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit fix: 处理项目配置栏底部在小屏幕上显示不全问题 --- src/layout/components/panel/index.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/layout/components/panel/index.vue b/src/layout/components/panel/index.vue index aa8ef495b..01aa26cba 100644 --- a/src/layout/components/panel/index.vue +++ b/src/layout/components/panel/index.vue @@ -54,7 +54,7 @@ emitter.on("openPanel", () => { .right-panel { width: 100%; - max-width: 300px; + max-width: 315px; height: 100vh; position: fixed; top: 0; @@ -105,8 +105,8 @@ emitter.on("openPanel", () => { .right-panel-items { margin-top: 60px; - height: 100vh; - overflow: auto; + height: calc(100vh - 60px); + overflow-y: auto; } .project-configuration {