From 63a3594671956fd36ca130f7c9179af8ada2ac7f Mon Sep 17 00:00:00 2001 From: Anso Date: Tue, 4 Aug 2026 23:05:49 -0400 Subject: [PATCH] fix(ui): restore equal gutters on container logs modal (#1771) The terminal panel used w-full with mx-6, so width 100% plus horizontal margins overflowed the overflow-hidden modal and clipped the right gutter. Match BashExecModal by dropping w-full and adding min-h-0. --- frontend/src/components/LogViewer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/LogViewer.tsx b/frontend/src/components/LogViewer.tsx index d5f61e85..bdfbb676 100644 --- a/frontend/src/components/LogViewer.tsx +++ b/frontend/src/components/LogViewer.tsx @@ -75,7 +75,7 @@ export function LogViewer({ containerId, containerName, isOpen, onClose }: LogVi
{logs.length === 0 && !isConnected ? (
Connecting to container stream...