From 1e4ebc2a3c875c35dad0f42898d31d07ee4fa5d4 Mon Sep 17 00:00:00 2001 From: Spacelord Date: Mon, 21 Apr 2025 17:36:26 +0200 Subject: [PATCH] Move foother to bottom --- static/main.css | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/static/main.css b/static/main.css index 643af72..cf0c338 100644 --- a/static/main.css +++ b/static/main.css @@ -1,3 +1,10 @@ +html, body { + height: 100%; + margin: 0; + display: flex; + flex-direction: column; +} + body { min-height: 100vh; } @@ -12,4 +19,8 @@ hidden { right: 0; z-index: 1000; margin: 20px; -} \ No newline at end of file +} + +footer { + margin-top: auto; +}