From 7389e5b9fff232591f6eaab24fc8551d24665e33 Mon Sep 17 00:00:00 2001 From: Jonathan Rosenbaum Date: Sun, 29 Mar 2026 06:41:35 +0000 Subject: [PATCH] Prevents button text from wrapping from < 939 --- style.css | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/style.css b/style.css index f321f9d..7a7b37f 100644 --- a/style.css +++ b/style.css @@ -128,5 +128,21 @@ li.wp-block-navigation-item.wp-block-navigation-link > a:hover { height: 24px; } .wp-social-link-mail svg { - display: none; + display: none; +} + +@media only screen and (max-width: 939px) { + .button-helper { + flex-wrap: nowrap !important; + } + + .button-helper .wp-block-button__link { + font-size: clamp(0.65rem, 2vw, 0.875rem); + padding: 6px 8px !important; + white-space: nowrap; + } + + .button-helper .wp-block-buttons { + min-width: auto; + } }