diff --git a/apps/ai-game-creator-shell/src/components/ChatMarkdownMessage/index.tsx b/apps/ai-game-creator-shell/src/components/ChatMarkdownMessage/index.tsx
index 81d852447..90bf6f82d 100644
--- a/apps/ai-game-creator-shell/src/components/ChatMarkdownMessage/index.tsx
+++ b/apps/ai-game-creator-shell/src/components/ChatMarkdownMessage/index.tsx
@@ -76,7 +76,7 @@ function MarkdownUnorderedList({ children }: { children?: ReactNode }) {
{/* 用真正的列表标记(`list-disc`)而不是手写 `'- '` 文本:手写前缀既没有悬挂缩进
(换行后的第二行会顶回最左边),也不算列表语义(读屏读成普通文本)。 */}
-
@@ -95,7 +95,7 @@ function MarkdownOrderedList({
{children}
@@ -111,8 +111,8 @@ function MarkdownParagraph({ children }: { children?: ReactNode }) {
paragraphPosition === 'first'
? 'inline'
: paragraphPosition === 'continuation'
- ? 'mt-2'
- : 'mt-2 first:mt-0'
+ ? 'mt-1'
+ : 'mt-1 first:mt-0'
}`}
>
{children}
@@ -128,8 +128,8 @@ function StreamingMarkdownParagraph({ children }: { children?: ReactNode }) {
paragraphPosition === 'first'
? 'inline'
: paragraphPosition === 'continuation'
- ? 'mt-2'
- : 'mt-2 first:mt-0'
+ ? 'mt-1'
+ : 'mt-1 first:mt-0'
}`}
>
{children}