From f9e9d94a2f065ec84812ffc56731c0fcfa33e840 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ing=C3=B3lfur=20Valsson?= Date: Thu, 9 Feb 2017 22:16:09 +0000 Subject: [PATCH] Minor bug fix in the card-container mixin The font color parameter to the mixin was ignored and the $card-font-color variable was always used. --- scss/components/_card.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scss/components/_card.scss b/scss/components/_card.scss index e6305730b..9d228773b 100644 --- a/scss/components/_card.scss +++ b/scss/components/_card.scss @@ -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; -- 2.47.2