From: Jérôme Benoit Date: Sat, 21 Mar 2026 16:56:43 +0000 (+0100) Subject: fix(webui): remove white-space nowrap on buttons to prevent table overflow X-Git-Tag: v3.2~18 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;h=0842dc8275b2c3555bb20c3eb1c0bfe2223da068;p=e-mobility-charging-stations-simulator.git fix(webui): remove white-space nowrap on buttons to prevent table overflow The nowrap prevented button text from wrapping in narrow table columns, causing the table to overflow its container when the action panel was open. Buttons in the toolbar still fit without wrapping due to flex sizing. --- diff --git a/ui/web/src/components/buttons/Button.vue b/ui/web/src/components/buttons/Button.vue index 1762c36e..8920855e 100644 --- a/ui/web/src/components/buttons/Button.vue +++ b/ui/web/src/components/buttons/Button.vue @@ -12,7 +12,6 @@ display: block; width: 100%; text-align: center; - white-space: nowrap; font-size: var(--font-size-sm); }