From 33a7205750fe7f1e71def5f0efec612cdfbb59ac Mon Sep 17 00:00:00 2001 From: Suzumiya Date: Tue, 15 Sep 2026 20:02:45 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B6=88=E6=81=AF=E5=88=97=E8=A1=A8=E7=9B=B8?= =?UTF-8?q?=E9=82=BB=E5=85=83=E7=B4=A0=E8=A1=A5=E5=9B=9E=2014px=20?= =?UTF-8?q?=E9=97=B4=E8=B7=9D=EF=BC=9A=E5=9D=97=E7=BA=A7=E5=88=97=E8=A1=A8?= =?UTF-8?q?=E4=B8=8D=E7=94=9F=E6=95=88=20gap=EF=BC=8C=E5=AF=BC=E8=87=B4?= =?UTF-8?q?=E6=B6=88=E6=81=AF=E4=B8=8E=E5=B7=A5=E5=85=B7=E5=9D=97=E8=B4=B4?= =?UTF-8?q?=E5=9C=A8=E4=B8=80=E8=B5=B7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 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 dce2f0225..af6ed5d53 100644 --- a/apps/ai-game-creator-shell/src/styles.css +++ b/apps/ai-game-creator-shell/src/styles.css @@ -12016,3 +12016,14 @@ button.design-workspace-tree__entry:hover, grid-column: 3; grid-row: 1 / span 2; } + +/* 消息之间的间距:消息列表是块级滚动容器(不是 flex/grid),基础规则里的 `gap: 14px` + 对它无效,而被改写成 `margin-top: 0` 的 `.message + .message` 又让相邻消息贴在一起。 + 这里给列表的相邻子元素统一加间距(消息、工具调用折叠块、思考过程块都适用), + 间距值与消息内部的行距观感一致。 */ +.game-workbench-chat + .project-supervisor-surface.is-direct-codex + .project-supervisor-message-list + > * + * { + margin-top: 14px; +}