From bb05239890846bc6bde33876e4cdf61b4bef031a Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Wed, 15 Apr 2026 08:27:00 -0300 Subject: [PATCH] fix: Limit message bubble width to 80% for better chat UX --- ui/suite/chat/chat.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ui/suite/chat/chat.css b/ui/suite/chat/chat.css index 4a547ea..cf3dae4 100644 --- a/ui/suite/chat/chat.css +++ b/ui/suite/chat/chat.css @@ -237,10 +237,12 @@ .message.user { align-self: flex-end; + max-width: 80%; } .message.bot { align-self: flex-start; + max-width: 80%; } .message-content {