From 0658b30062d69d6a16711739fa49cce82177eb06 Mon Sep 17 00:00:00 2001 From: RunDevelopment Date: Wed, 20 Oct 2021 16:25:02 +0200 Subject: [PATCH] Fixed gap after footer --- static/style.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/static/style.css b/static/style.css index ff488199d..28f90b673 100644 --- a/static/style.css +++ b/static/style.css @@ -641,6 +641,10 @@ footer { border-top: 1px solid var(--color-panel-divider); background-color: var(--color-panel); } +footer:after { + content: ""; + display: table; +} footer.with-border-bottom { border-bottom: 1px solid var(--color-panel-divider); }