From 1ba80606a7d7947639cf6a2e4cd588c87720830a Mon Sep 17 00:00:00 2001 From: adlee-was-taken Date: Sun, 22 Feb 2026 17:28:22 -0500 Subject: [PATCH] Add top padding to rules/leaderboard screens in portrait mode Prevents auth bar from overlapping back buttons. Back buttons align to start instead of stretching full width. Co-Authored-By: Claude Opus 4.6 --- client/style.css | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/client/style.css b/client/style.css index 7ad4a9c..6064195 100644 --- a/client/style.css +++ b/client/style.css @@ -5002,6 +5002,16 @@ body.mobile-portrait .game-header #leave-game-btn { display: none !important; } +body.mobile-portrait .rules-container, +body.mobile-portrait .leaderboard-container { + padding-top: 40px; +} + +body.mobile-portrait .rules-back-btn, +body.mobile-portrait .leaderboard-back-btn { + align-self: flex-start; +} + body.mobile-portrait .status-message { font-size: 1.02rem; white-space: nowrap;