From f7374b21010aa8bf7202da7aad38ae9722983637 Mon Sep 17 00:00:00 2001 From: Suzumiya Date: Tue, 8 Sep 2026 20:17:00 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=B0=83=E6=95=B4=20AGC=20=E8=BE=93?= =?UTF-8?q?=E5=85=A5=E5=8C=BA=E6=BB=9A=E5=8A=A8=E6=9D=A1=E6=98=BE=E7=A4=BA?= =?UTF-8?q?=E9=98=88=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 输入编辑器默认高度提高到 96px,超过 140px 后滚动 - 加深并加宽滚动条拇指,避免溢出时不可见 - 同步调整消息列表底部空间 --- apps/ai-game-creator-shell/src/styles.css | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/apps/ai-game-creator-shell/src/styles.css b/apps/ai-game-creator-shell/src/styles.css index e4c7c2c52..2f95bca0b 100644 --- a/apps/ai-game-creator-shell/src/styles.css +++ b/apps/ai-game-creator-shell/src/styles.css @@ -9211,17 +9211,17 @@ iframe.preview-frame { .game-workbench-chat .project-supervisor-surface.is-direct-codex .project-supervisor-message-list { - bottom: 116px; + bottom: 156px; } .resource-reference-input-editor::-webkit-scrollbar { - width: 8px; + width: 10px; } .resource-reference-input-editor::-webkit-scrollbar-thumb { border: 2px solid transparent; border-radius: 999px; - background: #cbd5e1; + background: #94a3b8; background-clip: padding-box; } @@ -9281,8 +9281,9 @@ iframe.preview-frame { .project-supervisor-surface.is-direct-codex .project-supervisor-composer .resource-reference-input-editor { - min-height: 64px; - max-height: 160px; + min-height: 96px; + max-height: 140px; + overflow-y: auto; padding: 0; font-size: 13px; line-height: 1.6;