fix(core): long words will overflow in chat panel (#13101)

This commit is contained in:
Cats Juice
2025-07-08 18:37:04 +08:00
committed by GitHub
parent 1d865f16fe
commit 81a76634f2
@@ -16,8 +16,7 @@ export class ChatMessageUser extends WithDisposable(ShadowlessElement) {
.chat-message-user {
display: flex;
flex-direction: column;
max-width: 800px;
margin-left: 58px;
max-width: calc(100% - 58px);
}
.chat-content-images {