From 9c1add4ff960d85c48fc6c2a154bf0ce9620f9c3 Mon Sep 17 00:00:00 2001 From: Dominik Date: Thu, 8 Jul 2021 12:26:08 +0200 Subject: [PATCH] Add min-height to main app Adds min-height: 80vh; The footer will stay always at the bottom on big screens and looks normal on mobile devices. --- app/static/css/main.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/static/css/main.css b/app/static/css/main.css index a9e7d89..71dd74e 100644 --- a/app/static/css/main.css +++ b/app/static/css/main.css @@ -7,6 +7,10 @@ select { font-family: Arial, Helvetica, sans-serif !important; } +#app { + min-height: 80vh; +} + h3.header { margin-bottom: 2.5rem; }