From 853fc9d2e50eaaa7bb27e6fbc87d8edac6ce1bfb Mon Sep 17 00:00:00 2001 From: "russell@unturf.com" Date: Fri, 6 Mar 2026 10:42:10 -0500 Subject: [PATCH] fix: prevent word wrapping on nav links, buttons, and footer links - Add white-space: nowrap to section.log-in links, .user-display-name, .cart-and-count, .mps-button, .mps-footer-links a, .mps-footer-group-title - Prevents sloppy word breaks on "My Account", "Cart $0.00", etc. --- make_post_sell/static/css/common.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/make_post_sell/static/css/common.css b/make_post_sell/static/css/common.css index 2558c46..ca0cc58 100644 --- a/make_post_sell/static/css/common.css +++ b/make_post_sell/static/css/common.css @@ -524,6 +524,10 @@ section.log-in { font-size: .75em; } +section.log-in a { + white-space: nowrap; +} + section.search { align-self: center; } @@ -686,6 +690,7 @@ pre, code { padding-bottom: 14px; text-align: center; text-decoration: none; + white-space: nowrap; cursor: pointer; } @@ -1070,11 +1075,13 @@ a.shop-switch-button { a.user-display-name { margin: 14px; display: inline-block; + white-space: nowrap; } a.cart-and-count { margin: 14px; display: inline-block; + white-space: nowrap; } @@ -3319,6 +3326,7 @@ textarea { color: var(--text-primary, #333); text-transform: uppercase; letter-spacing: 0.05em; + white-space: nowrap; } .mps-footer-links { @@ -3331,6 +3339,7 @@ textarea { font-size: 14px; font-weight: 400; text-decoration: none; + white-space: nowrap; } .mps-footer-links a:hover {