From f3b5301fa4e253e38aec88be808caed3b1a78069 Mon Sep 17 00:00:00 2001 From: Luca Date: Wed, 15 Feb 2023 23:30:21 +0100 Subject: [PATCH] Set min-height to viewport height --- templates/base.html | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/templates/base.html b/templates/base.html index 9ada595..8899d21 100644 --- a/templates/base.html +++ b/templates/base.html @@ -14,8 +14,13 @@ src: url("{% static 'MavenPro-VariableFont:wght.ttf' %}"); } - * { + body { font-family: "Maven Pro", sans-serif !important; + min-height: 100vh; + } + + body > .section { + flex-grow: 1; } :root { @@ -29,7 +34,7 @@ } - +