From 375519fa2dc5be776a8bfade953f36c906a254c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=BE=B7=E5=AE=87?= Date: Mon, 17 Aug 2026 14:53:06 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E9=A1=B9=E7=9B=AE=20UI=20?= =?UTF-8?q?=E7=BC=96=E8=BE=91=E5=99=A8=E9=AB=98=E5=BA=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 调整 UI 编辑器资源视图的工作台网格行 让编辑器占满工具栏下方的可伸展区域 --- apps/ai-game-creator-shell/src/styles.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/apps/ai-game-creator-shell/src/styles.css b/apps/ai-game-creator-shell/src/styles.css index c9f977db6..96e0af563 100644 --- a/apps/ai-game-creator-shell/src/styles.css +++ b/apps/ai-game-creator-shell/src/styles.css @@ -4453,6 +4453,16 @@ iframe.preview-frame { min-height: 0; } +.game-workbench-stage[data-resource-view-state='resources.ui-editor'] { + grid-template-rows: auto minmax(0, 1fr); +} + +.game-workbench-stage[data-resource-view-state='resources.ui-editor'] + > main { + grid-row: 2; + min-height: 0; +} + .game-workbench-toolbar { display: flex; align-items: center;