From 0a731bb4ae90a848b05fa264a7d064e13621047d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=8E=8B=E5=BE=B7=E5=AE=87?= Date: Tue, 1 Sep 2026 15:23:46 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B8=85=E7=90=86=E9=94=99=E8=AF=AF=E6=8A=A5?= =?UTF-8?q?=E5=91=8A=E5=AF=B9=E8=AF=9D=E6=A1=86=E6=97=A0=E6=95=88=E6=A0=B7?= =?UTF-8?q?=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 移除不存在的 header 段落选择器和 flex 下无效的 grid 列定义 --- apps/ai-game-creator-shell/src/styles.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/ai-game-creator-shell/src/styles.css b/apps/ai-game-creator-shell/src/styles.css index 2bebbd732..4d8be93b5 100644 --- a/apps/ai-game-creator-shell/src/styles.css +++ b/apps/ai-game-creator-shell/src/styles.css @@ -689,7 +689,6 @@ textarea { } .error-report-dialog__header h2 { margin: 0; } -.error-report-dialog__header p, .error-report-dialog__consent { margin: 4px 0 0; color: var(--platform-text-soft); font-size: 13px; } .error-report-dialog__header > button { border: 0; background: transparent; font-size: 24px; cursor: pointer; } .error-report-dialog__body { display: grid; gap: 16px; margin: 20px 0; } @@ -698,7 +697,7 @@ textarea { .error-report-dialog__events small { color: var(--platform-text-soft); } .error-report-dialog__body label { display: grid; gap: 6px; font-size: 13px; font-weight: 600; } .error-report-dialog__body textarea { min-height: 100px; resize: vertical; border: 1px solid var(--platform-border-subtle); border-radius: 10px; padding: 10px; font: inherit; } -.error-report-dialog__logs { display: flex !important; grid-template-columns: auto 1fr; align-items: center; } +.error-report-dialog__logs { display: flex !important; align-items: center; } .error-report-dialog__actions { justify-content: flex-end; } .error-report-dialog__actions button { border: 0; border-radius: 9px; padding: 9px 14px; cursor: pointer; } .error-report-dialog__actions button:last-child { background: var(--platform-button-primary-fill); color: var(--platform-button-primary-text); }