From 0678e86d3dcc0e7e09d7781d3c19f592d66386f0 Mon Sep 17 00:00:00 2001 From: duckietm Date: Thu, 26 Feb 2026 14:03:47 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=86=99=20Small=20fix=20for=20the=20chat?= =?UTF-8?q?=20bubbles,=20they=20where=20a=20bit=20off=20after=20the=20tail?= =?UTF-8?q?wind=20upgrade?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../room/widgets/chat/ChatWidgetMessageView.tsx | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/components/room/widgets/chat/ChatWidgetMessageView.tsx b/src/components/room/widgets/chat/ChatWidgetMessageView.tsx index c19bb3c..4e0c9c2 100644 --- a/src/components/room/widgets/chat/ChatWidgetMessageView.tsx +++ b/src/components/room/widgets/chat/ChatWidgetMessageView.tsx @@ -26,13 +26,13 @@ export const ChatWidgetMessageView: FC = ({ switch(bubbleWidth) { case RoomChatSettings.CHAT_BUBBLE_WIDTH_NORMAL: - return 'w-350'; + return 'max-w-[350px]'; case RoomChatSettings.CHAT_BUBBLE_WIDTH_THIN: - return 'w-240'; + return 'max-w-[240px]'; case RoomChatSettings.CHAT_BUBBLE_WIDTH_WIDE: - return 'w-2000'; + return 'max-w-[2000px]'; default: - return 'w-350'; + return 'max-w-[350px]'; } }, [ bubbleWidth ]); @@ -83,8 +83,7 @@ export const ChatWidgetMessageView: FC = ({ { chat.styleId === 0 && (
) } -
+
{ chat.imageUrl && chat.imageUrl.length > 0 && (