From 0842dc8275b2c3555bb20c3eb1c0bfe2223da068 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Sat, 21 Mar 2026 17:56:43 +0100 Subject: [PATCH] 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. --- ui/web/src/components/buttons/Button.vue | 1 - 1 file changed, 1 deletion(-) 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); } -- 2.43.0