]> git.parisson.com Git - mezzo.git/commitdiff
Fix the yellow button style
authorJérémy Fabre <Jeremy@iMac-de-Jeremy.local>
Thu, 15 Sep 2016 10:55:41 +0000 (12:55 +0200)
committerJérémy Fabre <Jeremy@iMac-de-Jeremy.local>
Thu, 15 Sep 2016 10:55:41 +0000 (12:55 +0200)
app/static/src/sass/global/_buttons.scss

index 456c6dd7d1176af7b8636b6a199189528c1725c8..393df9bece7e224b33769eece2837f91820f371d 100755 (executable)
@@ -14,6 +14,7 @@ $module: ".button";
     font-weight: weight(light);
 
     background: $color-main;
+    color: $color-black;
     display: inline-block;
     vertical-align: middle;
     cursor: pointer;
@@ -21,10 +22,10 @@ $module: ".button";
     @include transition(all 0.25s ease-in-out);
 
     &:hover {
-        background: black;
-        color: $color-main;
+        background: $color-black;
+        color: white;
         a {
-            color: $color-main;
+            color: white;
         }
     }