From 3bb2b0ba31b2b4b43c251d814ed9586b2ad5c352 Mon Sep 17 00:00:00 2001
From: Sveske_Juice <carl.benjamin.dreyer@gmail.com>
Date: Sat, 24 Feb 2024 00:36:18 +0100
Subject: [PATCH] blog post header align

---
 src/routes/post/+page.svelte | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/routes/post/+page.svelte b/src/routes/post/+page.svelte
index b262c59..0508ba4 100644
--- a/src/routes/post/+page.svelte
+++ b/src/routes/post/+page.svelte
@@ -46,21 +46,23 @@
         display: flex;
         flex-wrap: wrap;
 
-        align-items: center;
+        align-content: center;
         justify-content: space-around;
 
-        padding-bottom: 25px;
+        padding: 0 0 20px 0;
         margin-bottom: 25px;
     }
 
     #search {
         height: 40px;
 
+        align-self: center;
         border: none;
         border-radius: 10px;
         font-size: 18px;
         line-height: 2;
         padding: 0.5rem 0.8rem;
+        margin-top: 0px;
 
         background-color: var(--background);
         color: var(--text1);