From 4f9de5c1255d541bb94e6d8a3eaccd0f7916fbfe Mon Sep 17 00:00:00 2001
From: Conrad Zelck <git@simpel.cc>
Date: Thu, 5 Oct 2023 16:24:35 +0200
Subject: [PATCH] fix: change padding to margin in header

Otherwise there would be a much greater gap between header and main.
Header normally is styled by icluded style via head.php. This has the
correct margin. The padding-top from this local style.css did two gaps
together.

Signed-off-by: Conrad Zelck <git@simpel.cc>
---
 style.css | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/style.css b/style.css
index 5a2dff2..bded692 100644
--- a/style.css
+++ b/style.css
@@ -65,7 +65,7 @@ a {
 }
 
 header {
-  padding-bottom: 1.5em;
+  margin-bottom: 1.5em;
 }
 
 nav {
-- 
GitLab