From cce2d661a2b8a81da66d032820bb106c14576dfb Mon Sep 17 00:00:00 2001 From: adlee-was-taken Date: Mon, 23 Feb 2026 23:26:52 -0500 Subject: [PATCH] Fix logo-row centering at mid-range widths (750-1120px) Change .logo-row from inline-block to block so the golf ball logo always left-aligns flush with the G, regardless of viewport width. Co-Authored-By: Claude Opus 4.6 --- client/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/style.css b/client/style.css index 8a48804..27799b5 100644 --- a/client/style.css +++ b/client/style.css @@ -108,7 +108,7 @@ body { } .logo-row { - display: inline-block; + display: block; margin-bottom: -0.3em; }