fix(chat): align user bubble to match AI bubble for consistent layout

This commit is contained in:
2026-06-16 18:58:42 +08:00
parent 0a9abc2502
commit 8d786f1e04
+4 -1
View File
@@ -47,7 +47,10 @@
.bubbleRowUser {
display: flex;
flex-direction: row;
align-items: flex-end;
/* 与 AI 行保持一致:头像顶部对齐气泡首行。
* 原 flex-end 在气泡多行换行时会把头像贴到气泡底部(视觉上像 "脚注"),
* 跟 AI 行不对称,改成 flex-start 跟 AI 行对齐方式统一 */
align-items: flex-start;
align-self: flex-end;
gap: var(--spacing-1, 4px);
}