From 4c2c04af5ba62127a0858b188d6e62c435c4a48e Mon Sep 17 00:00:00 2001 From: Lucie Anglade Date: Sat, 5 Aug 2023 12:41:48 +0200 Subject: [PATCH] Fix footer --- themes/afpy/static/css/website.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/themes/afpy/static/css/website.css b/themes/afpy/static/css/website.css index d91562f..e2b77b6 100644 --- a/themes/afpy/static/css/website.css +++ b/themes/afpy/static/css/website.css @@ -33,7 +33,6 @@ html { body { display: flex; flex-direction: column; - justify-content: space-between; margin: 0; min-height: 100vh; } @@ -96,7 +95,8 @@ footer li { } footer { - border: var(--grey) 1px solid; + background: var(--white); + border-top: var(--grey) 1px solid; height: 4em; width: 100vw; } @@ -108,6 +108,7 @@ footer ul { /* Main */ main { + flex-grow: 1; margin: 4em auto 4em auto; }