From 7bc09b757aca0c19ddc6329ef7be60bcd1a0e0db Mon Sep 17 00:00:00 2001 From: xangelo Date: Fri, 18 Oct 2024 15:00:13 -0400 Subject: [PATCH] fix: bg gradient should span entire window height --- public/assets/css/game.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/public/assets/css/game.css b/public/assets/css/game.css index 82a5fff..2f32e19 100644 --- a/public/assets/css/game.css +++ b/public/assets/css/game.css @@ -6,6 +6,9 @@ font-style: normal; font-display: swap; } +html { + height: 100vh; +} body { margin: 1rem auto 2rem; -- 2.25.1