From 49916e6a6c939123dd63478aac0a443c46a9847e Mon Sep 17 00:00:00 2001 From: adlee-was-taken Date: Sun, 22 Feb 2026 19:53:41 -0500 Subject: [PATCH] Remove top padding above game header in desktop mode Co-Authored-By: Claude Opus 4.6 --- client/style.css | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/client/style.css b/client/style.css index ceb3aa2..401a701 100644 --- a/client/style.css +++ b/client/style.css @@ -3344,7 +3344,11 @@ input::placeholder { display: none; } -/* Hide global auth-bar when game screen is active */ +/* Hide global auth-bar and remove top padding when game screen is active */ +#app:has(#game-screen.active) { + padding-top: 0; +} + #app:has(#game-screen.active) > .auth-bar { display: none !important; }