From 93a3a00da765556e2d07bf3ff78af3e9f9d5d7a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0t=C4=9Bp=C3=A1n=20Farka?= <stepanfarka11@gmail.com> Date: Tue, 30 Aug 2022 15:27:41 +0200 Subject: [PATCH] [FIX] footer --- main/styleguide/source/_patterns/organisms/footer.mustache | 4 ++-- main/templates/main/includes/layout/footer.html | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/main/styleguide/source/_patterns/organisms/footer.mustache b/main/styleguide/source/_patterns/organisms/footer.mustache index ab6971cce..31f9f279c 100644 --- a/main/styleguide/source/_patterns/organisms/footer.mustache +++ b/main/styleguide/source/_patterns/organisms/footer.mustache @@ -9,7 +9,7 @@ class="w-32 md:w-40 pb-6" /> </section> - <section class="footer__social lg:text-right lg:mb-10"> + <section class="footer__social mb-5 lg:text-right lg:mb-10"> <div class="font-alt text-2xl mb-4"> Zůstaňte s námi v konaktu </div> @@ -34,7 +34,7 @@ </div> </section> <section class="footer__main-links text-white lg:flex lg:flex-wrap lg:justify-between gap-8"> - <div class="pt-8 pb-4 lg:py-0"> + <div class="py-4 lg:py-0"> <ui-footer-collapsible label="Navigace"> <ul class="text-white py-8"> <li> diff --git a/main/templates/main/includes/layout/footer.html b/main/templates/main/includes/layout/footer.html index b58f5c794..1ad964298 100644 --- a/main/templates/main/includes/layout/footer.html +++ b/main/templates/main/includes/layout/footer.html @@ -10,7 +10,7 @@ class="w-32 md:w-40 pb-6" /> </section> - <section class="footer__social lg:text-right lg:mb-10"> + <section class="footer__social mb-5 lg:text-right lg:mb-10"> {% if page.root_page.social_links %} <div class="font-alt text-2xl mb-4"> Zůstaňte s námi v konaktu @@ -28,7 +28,7 @@ </section> <section class="footer__main-links text-white lg:flex lg:flex-wrap lg:justify-between gap-8"> {% for other_link in page.root_page.footer_other_links %} - <div class="{% if forloop.first %}pt-8 pb-4 {% else %}pt-4 {% endif %}lg:py-0"> + <div class="py-4 lg:py-0"> <ui-footer-collapsible label="{{ other_link.value.title }}"> <ul class="text-white py-8"> {% for link_list in other_link.value.list %} -- GitLab