fix(chat): Expand user chat bubble edit textbox width (#3963)

* fix(chat): Expand user chat bubble edit textbox width

- Update user chat bubble width from `fit-content` to `85%` to ensure consistency with the AI chat bubble edit textbox width.

* style(chat): Refine user message bubble width logic

- Change general bubble width to `fit-content`
- Set width to 85% specifically for user messages containing a `textarea`
This commit is contained in:
DL Techy
2026-07-11 20:52:14 +08:00
committed by GitHub
parent 890d6a0220
commit 2531ba401c
+3
View File
@@ -2070,6 +2070,9 @@ body.bg-pattern-sparkles {
overflow-wrap: break-word;
overflow: hidden;
}
.msg-user:has(textarea) {
width: 85%;
}
.msg-ai {
align-items: flex-start;
margin-right: auto;