From 231e6664073dfc476ff7ecb89e4de5628db940bf Mon Sep 17 00:00:00 2001 From: adlee-was-taken Date: Mon, 23 Feb 2026 22:31:38 -0500 Subject: [PATCH] Fix logo shift direction: move left on landscape, not right Co-Authored-By: Claude Opus 4.6 --- client/style.css | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/client/style.css b/client/style.css index df3851c..8ea9826 100644 --- a/client/style.css +++ b/client/style.css @@ -97,14 +97,13 @@ body { width: 1.1em; height: 1.1em; vertical-align: middle; - margin-left: 0.5em; margin-right: 18px; filter: drop-shadow(1px 2px 2px rgba(0,0,0,0.25)); } @media (orientation: landscape) { .golfball-logo { - margin-left: 1.8em; + margin-left: -1.5em; } }