From ccfc068bc5f6aeb8575acfa1488c0ea5c43213b2 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.