From ec09a998f732a26f6c13bfc80adda03badfd8c2f Mon Sep 17 00:00:00 2001 From: aixianling Date: Wed, 5 Jun 2024 16:10:13 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E5=B1=95=E5=BC=80=E5=8A=A8?= =?UTF-8?q?=E7=94=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ui/packages/ai/AiCopilot.vue | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/ui/packages/ai/AiCopilot.vue b/ui/packages/ai/AiCopilot.vue index a9c01d76..9f1ba5a9 100644 --- a/ui/packages/ai/AiCopilot.vue +++ b/ui/packages/ai/AiCopilot.vue @@ -21,8 +21,8 @@ export default {
-
-
+
+
@@ -60,6 +60,7 @@ export default { & > b { font-size: 16px; + cursor: default; } .expandBtn, .minimal { @@ -81,19 +82,25 @@ export default { } .content { - height: max-content; + height: calc(100% - 48px); .left { width: 0; + height: 100%; transition: width 1s; &.expand { - width: 332px; + width: 260px; + + & + .right { + border-left: 1px solid #ddd; + } } } .right { - width: 348px; + width: 420px; + height: 100%; } } }