From f2a60ea630912129d2fa7ea4c12dc424b0d5ad27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Angel=20Garc=C3=ADa?= Date: Mon, 17 Aug 2026 20:41:22 -0600 Subject: [PATCH] Set thread message width to 100vw Prevent code block from expanding the chat webview beyond it's horizontal limits by setting thread message div width to 100vw. --- gui/src/pages/gui/Chat.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/gui/src/pages/gui/Chat.tsx b/gui/src/pages/gui/Chat.tsx index 00e04efd1f4..564dbe214aa 100644 --- a/gui/src/pages/gui/Chat.tsx +++ b/gui/src/pages/gui/Chat.tsx @@ -78,6 +78,7 @@ const StepsDiv = styled.div` .thread-message { margin: 0 0 0 1px; + width: 100vw; } `;