From 2dc26d6809258519f82f9a292155b5fd173b3484 Mon Sep 17 00:00:00 2001 From: Yann Soubeyrand Date: Fri, 21 Apr 2023 19:26:38 +0200 Subject: [PATCH] css: fix main container height Setting a minimum height instead of a fixed height fixes footer overflow issues. Signed-off-by: Yann Soubeyrand --- assets/scss/_main-container.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/scss/_main-container.scss b/assets/scss/_main-container.scss index f64592b01b..131a1b1549 100644 --- a/assets/scss/_main-container.scss +++ b/assets/scss/_main-container.scss @@ -2,7 +2,7 @@ .td-outer { display: flex; flex-direction: column; - height: 100vh; + min-height: 100vh; } // The outer page container for the default base template.