From ea6e00746e96114b3e1914ea680134933160df8b Mon Sep 17 00:00:00 2001
From: xaralis <filip.varecha@fragaria.cz>
Date: Sun, 28 Jun 2020 15:41:52 +0200
Subject: [PATCH] Drop unused styles, fix footer colors

---
 .../02-organisms/00-global/footer.mustache    | 10 ++---
 source/css/organisms/footer.pcss              | 39 -------------------
 2 files changed, 5 insertions(+), 44 deletions(-)

diff --git a/source/_patterns/02-organisms/00-global/footer.mustache b/source/_patterns/02-organisms/00-global/footer.mustache
index ad18a7e..052e7d9 100644
--- a/source/_patterns/02-organisms/00-global/footer.mustache
+++ b/source/_patterns/02-organisms/00-global/footer.mustache
@@ -6,7 +6,7 @@
         alt=""
         class="footer-brand w-32 md:w-40 pb-6"
       />
-      <p class="para hidden md:block md:mb-4 lg:mb-0">
+      <p class="para hidden md:block md:mb-4 lg:mb-0 text-grey-200">
         Piráti, 2020. Všechna práva vyhlazena. Sdílejte a nechte
         ostatní sdílet za stejných podmínek.
       </p>
@@ -14,7 +14,7 @@
     <section class="footer__main-links bg-grey-700 text-white lg:grid grid-cols-3 gap-4">
       <div class="pt-8 pb-4 lg:py-0">
         <span class="text-xl uppercase text-white">Nová sekce</span>
-        <ul class="mt-6 space-y-2">
+        <ul class="mt-6 space-y-2 text-grey-200">
           <li>
             <a href="#">Lorem ipsum</a>
           </li>
@@ -28,7 +28,7 @@
       </div>
       <div class="py-4 lg:py-0 border-t border-grey-400 lg:border-t-0">
         <span class="text-xl uppercase text-white">Nová sekce</span>
-        <ul class="mt-6 space-y-2">
+        <ul class="mt-6 space-y-2 text-grey-200">
           <li>
             <a href="#">Lorem ipsum</a>
           </li>
@@ -42,7 +42,7 @@
       </div>
       <div class="pt-4 lg:py-0 border-t border-grey-400 lg:border-t-0">
         <span class="text-xl uppercase text-white">Nová sekce</span>
-        <ul class="mt-6 space-y-2">
+        <ul class="mt-6 space-y-2 text-grey-200">
           <li>
             <a href="#">Lorem ipsum</a>
           </li>
@@ -68,7 +68,7 @@
     <div class="container container--default">
       <div class="flex flex-col lg:flex-row lg:space-x-4 lg:items-center py-4 lg:py-8 border-t border-grey-400 lg:border-t-0">
         <span class="lg:w-1/4 text-xl uppercase text-white">Otevřenost</span>
-        <ul class="lg:w-2/4 grid grid-cols-1 lg:grid-cols-3 lg:gap-4 items-center mt-6 space-y-2 lg:mt-0 lg:space-y-0">
+        <ul class="lg:w-2/4 grid grid-cols-1 lg:grid-cols-3 lg:gap-4 items-center mt-6 space-y-2 lg:mt-0 lg:space-y-0 text-grey-200">
           <li>
             <a href="#">Transparentní účet</a>
           </li>
diff --git a/source/css/organisms/footer.pcss b/source/css/organisms/footer.pcss
index 3559928..e6c68a3 100644
--- a/source/css/organisms/footer.pcss
+++ b/source/css/organisms/footer.pcss
@@ -1,42 +1,3 @@
-/* .footer {
-  @apply text-grey-200;
-}
-
-.footer-section {
-  @apply py-4;
-
-  @screen md {
-    @apply py-12;
-
-    &.footer-section--dense {
-      @apply py-6;
-    }
-  }
-}
-
-.footer-splitter {
-  @apply border-t border-grey-400;
-}
-
-.footer-copy {
-  @apply pr-16;
-  order: -2;
-
-  @screen lg {
-    order: 0;
-  }
-}
-
-.footer-social {
-  order: -1;
-
-  @screen lg {
-    @apply text-right;
-    order: 1;
-  }
-} */
-
-
 .footer__main {
   @apply grid;
   grid-template-areas: "brand"
-- 
GitLab