fix(chat): align user bubble to match AI bubble for consistent layout
This commit is contained in:
@@ -47,7 +47,10 @@
|
|||||||
.bubbleRowUser {
|
.bubbleRowUser {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
align-items: flex-end;
|
/* 与 AI 行保持一致:头像顶部对齐气泡首行。
|
||||||
|
* 原 flex-end 在气泡多行换行时会把头像贴到气泡底部(视觉上像 "脚注"),
|
||||||
|
* 跟 AI 行不对称,改成 flex-start 跟 AI 行对齐方式统一 */
|
||||||
|
align-items: flex-start;
|
||||||
align-self: flex-end;
|
align-self: flex-end;
|
||||||
gap: var(--spacing-1, 4px);
|
gap: var(--spacing-1, 4px);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user