From d5a1ab7b0c1934f85352d5e7c1c18044267b238d Mon Sep 17 00:00:00 2001 From: Olivi <225673551+Olivi-9@users.noreply.github.com> Date: Fri, 13 Mar 2026 09:22:34 +0800 Subject: fix(ui): prevent sidebar shrink / svg compression on Connections page Body: Add min-width:0 / flex-shrink:0 to flex containers so sidebar stays stable and the overview svg doesn’t get squashed when the connections toolbar expands. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/App.module.scss | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/App.module.scss') diff --git a/src/App.module.scss b/src/App.module.scss index e67057f..c70e7a3 100644 --- a/src/App.module.scss +++ b/src/App.module.scss @@ -16,5 +16,7 @@ .content { flex-grow: 1; + min-width: 0; overflow-y: auto; + overflow-x: auto; } -- cgit v1.3.1