From e5ed43734b006fc085831456700e390b79a42f90 Mon Sep 17 00:00:00 2001 From: Roni Laukkarinen Date: Tue, 29 Sep 2020 16:49:50 +0300 Subject: [PATCH] =?UTF-8?q?Konsistentit=20v=C3=A4rimuuttujat?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- _pages/made-by-dude-badge.md | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/_pages/made-by-dude-badge.md b/_pages/made-by-dude-badge.md index d31d970..e472b48 100644 --- a/_pages/made-by-dude-badge.md +++ b/_pages/made-by-dude-badge.md @@ -19,10 +19,9 @@ Sivujen tekijästä ilmoittaa Made by Dude -badge, joka lisätään asiak Uusi tiedosto: sass/layout/_dude-badge.scss:
// Color variables
-$dark: #03061b;
-$light: #fff;
-$main: $color-main;
-$logo-in-use: $dark;
+$color-badge-dark: #03061b;
+$color-badge-light: #fff;
+$color-badge: $color-badge-dark;
 
 .site-footer .container {
   position: relative;
@@ -40,15 +39,15 @@ $logo-in-use: $dark;
   }
 
   a:hover .heart {
-    fill: $logo-in-use;
+    fill: $color-badge;
   }
 
   .fill {
-    fill: $logo-in-use;
+    fill: $color-badge;
   }
 
   .stroke {
-    stroke: $logo-in-use;
+    stroke: $color-badge;
   }
 }