From 168d7103b1963937f0cd0b1e063348e642080747 Mon Sep 17 00:00:00 2001 From: Carlos Valente Date: Sat, 21 Feb 2026 21:25:02 +0100 Subject: [PATCH] fix: prevent settings reflow on small width screens --- .../app-settings/panel-content/PanelContent.module.scss | 3 ++- .../src/features/app-settings/panel-list/PanelList.module.scss | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/apps/client/src/features/app-settings/panel-content/PanelContent.module.scss b/apps/client/src/features/app-settings/panel-content/PanelContent.module.scss index 0e8d6afd8..265409b70 100644 --- a/apps/client/src/features/app-settings/panel-content/PanelContent.module.scss +++ b/apps/client/src/features/app-settings/panel-content/PanelContent.module.scss @@ -9,7 +9,8 @@ display: flex; flex-direction: column; height: 100%; - width: 100%; + flex: 1 1 auto; + min-width: 0; position: relative; } diff --git a/apps/client/src/features/app-settings/panel-list/PanelList.module.scss b/apps/client/src/features/app-settings/panel-list/PanelList.module.scss index 327c0a735..c6a274808 100644 --- a/apps/client/src/features/app-settings/panel-list/PanelList.module.scss +++ b/apps/client/src/features/app-settings/panel-list/PanelList.module.scss @@ -7,6 +7,8 @@ ul { .tabs { width: min(30vw, 300px); + flex: 0 0 min(30vw, 300px); + min-width: min(30vw, 300px); display: flex; flex-direction: column; overflow-y: auto;