From 63e72355f744b2271c48d0178f1af048d28f694b Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Sat, 21 Mar 2026 17:23:56 +0100 Subject: [PATCH] fix(webui): prevent action panel flex grow and allow table container to shrink Use ID selector on #action-container for higher specificity (1-1-0) over Container.vue scoped .container (0-2-0), add flex: none to prevent growing. Add min-width: 0 and remove width: 100% on charging stations container to allow flex shrink below table content width. --- ui/web/src/App.vue | 3 ++- ui/web/src/views/ChargingStationsView.vue | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ui/web/src/App.vue b/ui/web/src/App.vue index 7883d52b..0bcfc609 100644 --- a/ui/web/src/App.vue +++ b/ui/web/src/App.vue @@ -14,7 +14,8 @@ import Container from '@/components/Container.vue'