fix(chat): align message bubble and avatar in the same row

Change flex-direction from column to row on .bubbleRowAi and
.bubbleRowUser so the avatar and message content render side-by-side
as the JSX and JSDoc already intend.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2026-06-11 13:00:06 +08:00
parent 0c63b7dee4
commit 7c89f1b39d
+2 -2
View File
@@ -37,14 +37,14 @@
.bubbleRowAi { .bubbleRowAi {
display: flex; display: flex;
flex-direction: column; flex-direction: row;
align-items: flex-start; align-items: flex-start;
gap: var(--spacing-1, 4px); gap: var(--spacing-1, 4px);
} }
.bubbleRowUser { .bubbleRowUser {
display: flex; display: flex;
flex-direction: column; flex-direction: row;
align-items: flex-end; align-items: flex-end;
gap: var(--spacing-1, 4px); gap: var(--spacing-1, 4px);
} }