From 3c42132fe7446eed9cd8be6cf15e73a2d9c6d74f Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Mon, 9 Oct 2023 15:54:40 +0000 Subject: [PATCH] CSS: Fix moving the footer to the bottom The viewport was not scaled up to the maximum height of the window which is why the footer was not pushed to the bottom of the page. Signed-off-by: Michael Tremer --- src/sass/main.sass | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/sass/main.sass b/src/sass/main.sass index f1a13f87..95704306 100644 --- a/src/sass/main.sass +++ b/src/sass/main.sass @@ -62,6 +62,9 @@ $section-padding-desktop: 3rem 0.5rem // Custom CSS +html, body + min-height: 100vh; + #hero-index position: relative video -- 2.47.3