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:
@@ -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);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user