From 57996e5b61f1d9cf41c141cb04dd749f34d7f76d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C5=A0t=C4=9Bp=C3=A1n=20Farka?= <stepanfarka11@gmail.com>
Date: Tue, 6 Sep 2022 12:48:02 +0200
Subject: [PATCH] [FIX] small bugfixes

---
 main/styleguide/source/_patterns/atoms/text/headings.mustache | 2 +-
 main/styleguide/source/_patterns/templates/people.mustache    | 2 +-
 main/styleguide/source/css/atoms/heading.pcss                 | 3 +++
 main/templates/main/main_people_page.html                     | 2 +-
 4 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/main/styleguide/source/_patterns/atoms/text/headings.mustache b/main/styleguide/source/_patterns/atoms/text/headings.mustache
index 9d6613e8f..57dc9c20f 100644
--- a/main/styleguide/source/_patterns/atoms/text/headings.mustache
+++ b/main/styleguide/source/_patterns/atoms/text/headings.mustache
@@ -9,7 +9,7 @@
       Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's
       standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a
       type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting,
-      remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing
+      remaining essentially unchanged. <a href="#">Aldus PageMaker including versions of Lorem Ipsum.</a> It was popularised in the 1960s with the release of Letraset sheets containing
       Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions
       of Lorem Ipsum.
     </p>
diff --git a/main/styleguide/source/_patterns/templates/people.mustache b/main/styleguide/source/_patterns/templates/people.mustache
index 4964ded1e..0ce0d0075 100644
--- a/main/styleguide/source/_patterns/templates/people.mustache
+++ b/main/styleguide/source/_patterns/templates/people.mustache
@@ -30,7 +30,7 @@
             </div>
           </ui-horizontal-scrollable>
         </div>
-        <div class="flex flex-wrap gap-4 xl:justify-center">
+        <div class="flex flex-wrap gap-4">
           <template v-if="isCurrentView('candidates')">
             {{> molecules-person-contact-big-block(name: "Ivan Bartoš", function: "předseda Pirátů, poslanec PSP ČR za Ústecký kraj, ministr, vicepremiér") }}
           </template>
diff --git a/main/styleguide/source/css/atoms/heading.pcss b/main/styleguide/source/css/atoms/heading.pcss
index e39a7f65d..cee180872 100644
--- a/main/styleguide/source/css/atoms/heading.pcss
+++ b/main/styleguide/source/css/atoms/heading.pcss
@@ -199,4 +199,7 @@ p {
     @apply font-alt xl:text-2xl font-medium leading-8 uppercase;
     letter-spacing: -0.01em;
   }
+  a {
+    @apply font-semibold;
+  }
 }
diff --git a/main/templates/main/main_people_page.html b/main/templates/main/main_people_page.html
index 526a6b870..d2d4c879f 100644
--- a/main/templates/main/main_people_page.html
+++ b/main/templates/main/main_people_page.html
@@ -33,7 +33,7 @@
             </div>
           </ui-horizontal-scrollable>
         </div>
-        <div class="flex flex-wrap gap-4 xl:justify-center">
+        <div class="flex flex-wrap gap-4">
           {% for people_group in page.people %}
             <template v-if="isCurrentView('{{ people_group.value.slug }}-{{ forloop.counter }}')">
               {% for person_page in people_group.value.person_list %}
-- 
GitLab