From 509b0118d4509e85ec6aeabc02beffdcaacff2aa Mon Sep 17 00:00:00 2001 From: Joseph Doherty Date: Sun, 17 May 2026 00:54:53 -0400 Subject: [PATCH] Keep dashboard button labels on a single line Bootstrap 5 .btn no longer pins white-space, so the Rotate/Revoke action buttons broke mid-word in the narrow API Keys actions column. Pin .btn to white-space: nowrap so a label always reads as one word. Co-Authored-By: Claude Opus 4.7 (1M context) --- src/MxGateway.Server/wwwroot/css/dashboard.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MxGateway.Server/wwwroot/css/dashboard.css b/src/MxGateway.Server/wwwroot/css/dashboard.css index eab199c..fa5f4b8 100644 --- a/src/MxGateway.Server/wwwroot/css/dashboard.css +++ b/src/MxGateway.Server/wwwroot/css/dashboard.css @@ -200,7 +200,7 @@ code { /* ── Buttons ───────────────────────────────────────────────────────────────── Flatten Bootstrap buttons onto the single accent + hairline palette. */ -.btn { border-radius: 5px; font-size: 0.82rem; font-weight: 500; } +.btn { border-radius: 5px; font-size: 0.82rem; font-weight: 500; white-space: nowrap; } .btn-primary { background: var(--accent); border-color: var(--accent);