From a42452106c010391aeb6cbe7ed564a10937d13c5 Mon Sep 17 00:00:00 2001 From: Suzumiya Date: Tue, 8 Sep 2026 19:24:58 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=AF=B9=E9=BD=90=20AGC=20=E8=BE=93?= =?UTF-8?q?=E5=85=A5=E5=8C=BA=20@=20=E4=B8=8E=E5=8F=91=E9=80=81=E6=8C=89?= =?UTF-8?q?=E9=92=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 覆盖直接 Codex 输入区的全局按钮绝对定位 - @ 按钮改为 actions 容器内静态网格项,与发送按钮保持同一基线 --- apps/ai-game-creator-shell/src/styles.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/apps/ai-game-creator-shell/src/styles.css b/apps/ai-game-creator-shell/src/styles.css index 03cd3b40f..c27173650 100644 --- a/apps/ai-game-creator-shell/src/styles.css +++ b/apps/ai-game-creator-shell/src/styles.css @@ -9098,16 +9098,27 @@ iframe.preview-frame { position: absolute; right: 48px; bottom: 10px; + display: flex; + align-items: center; + height: 30px; } .game-workbench-chat .project-supervisor-surface.is-direct-codex .project-supervisor-composer .resource-reference-input-at { + position: static !important; + right: auto !important; + bottom: auto !important; + display: grid; width: 30px; + min-width: 30px; height: 30px; + min-height: 30px; + padding: 0; border: 0; border-radius: 9px; background: var(--platform-button-primary-fill); color: var(--platform-button-primary-text); + place-items: center; }