From 0874b7a352705d11bcbd6284356347f2b5b8e975 Mon Sep 17 00:00:00 2001 From: kdletters Date: Mon, 24 Aug 2026 14:07:58 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E7=99=BB=E5=BD=95=E9=A1=B5?= =?UTF-8?q?=E5=AF=BC=E5=85=A5=E6=8E=92=E5=BA=8F=E4=B8=8E=E7=AA=84=E5=B1=8F?= =?UTF-8?q?=E6=BB=9A=E5=8A=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 调整认证页产品图导入顺序通过 ESLint 检查 允许认证外壳在短视口下纵向滚动 --- apps/ai-game-creator-shell/src/app/AuthenticatedClient.tsx | 2 +- apps/ai-game-creator-shell/src/styles.css | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/apps/ai-game-creator-shell/src/app/AuthenticatedClient.tsx b/apps/ai-game-creator-shell/src/app/AuthenticatedClient.tsx index 573d24291..290a06cc1 100644 --- a/apps/ai-game-creator-shell/src/app/AuthenticatedClient.tsx +++ b/apps/ai-game-creator-shell/src/app/AuthenticatedClient.tsx @@ -7,8 +7,8 @@ import { useState, } from 'react'; -import brandIcon from '../../../../packages/shared/src/icons/taonier-product-ip.png'; import type { AuthUser } from '../../../../packages/shared/src/contracts/auth'; +import brandIcon from '../../../../packages/shared/src/icons/taonier-product-ip.png'; import { clearStoredAuthAccessToken, getClientAuthErrorMessage, diff --git a/apps/ai-game-creator-shell/src/styles.css b/apps/ai-game-creator-shell/src/styles.css index 57dd6dd63..af012a424 100644 --- a/apps/ai-game-creator-shell/src/styles.css +++ b/apps/ai-game-creator-shell/src/styles.css @@ -123,7 +123,8 @@ textarea { display: grid; min-height: 100vh; padding: 24px; - overflow: hidden; + overflow-x: hidden; + overflow-y: auto; background: var(--platform-body-fill); color: var(--platform-text-strong); place-items: center;