Remove top padding above game header in desktop mode

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
adlee-was-taken 2026-02-22 19:53:41 -05:00
parent e0641de449
commit 49916e6a6c

View File

@ -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;
}