]> git.ipfire.org Git - thirdparty/foundation/foundation-sites.git/commitdiff
Minor bug fix in the card-container mixin 9762/head
authorIngólfur Valsson <ingovals@gmail.com>
Thu, 9 Feb 2017 22:16:09 +0000 (22:16 +0000)
committerGitHub <noreply@github.com>
Thu, 9 Feb 2017 22:16:09 +0000 (22:16 +0000)
The font color parameter to the mixin was ignored and the $card-font-color variable was always used.

scss/components/_card.scss

index e6305730bf47eaf5ef9224795d096feedc1181c0..9d228773b0861e3b8da0e5ae8a983e9935f0d149 100644 (file)
@@ -67,7 +67,7 @@ $card-margin: $global-margin !default;
   box-shadow: $shadow;
 
   overflow: hidden;
-  color: $card-font-color;
+  color: $color;
 
   & > :last-child {
     margin-bottom: 0;