From 5f17b172289e28fc27ea58d5e0cdab8375e31956 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Valenta?= <git@imaniti.org>
Date: Sat, 12 Aug 2023 18:01:17 +0200
Subject: [PATCH] fix article page height

---
 home/templates/home/home_articles_page.html | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/home/templates/home/home_articles_page.html b/home/templates/home/home_articles_page.html
index 05caf61..7e0af81 100644
--- a/home/templates/home/home_articles_page.html
+++ b/home/templates/home/home_articles_page.html
@@ -12,9 +12,9 @@
             </div>
         {% endif %}
 
-        <ul class="flex gap-4 lg:h-96 flex-wrap">
+        <ul class="flex gap-4 flex-wrap">
             {% for article in page.articles %}
-                <li class="bg-pii-cyan text-white p-7 lg:w-80">
+                <li class="bg-pii-cyan lg:h-96 text-white p-7 lg:w-80">
                     <a
                         class="flex flex-col gap-2 h-full"
                         href="{{ article.url }}"
-- 
GitLab