From 6053c5c8e21bc8b7f0e35ab753bd374d5a53477c Mon Sep 17 00:00:00 2001 From: "James W. Lane III" Date: Fri, 27 Jun 2014 14:56:26 -0500 Subject: [PATCH] Fix undefined variable in _settings.scss ON line 371 the $button-border-color is using a undefined variable $bg I changed it to $button-bg. --- scss/foundation/_settings.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scss/foundation/_settings.scss b/scss/foundation/_settings.scss index a9d7a20be..1c5d9c3e8 100644 --- a/scss/foundation/_settings.scss +++ b/scss/foundation/_settings.scss @@ -368,7 +368,7 @@ // $button-border-width: 0px; // $button-border-style: solid; // $button-bg: $primary-color; -// $button-border-color: scale-color($bg, $lightness: $button-function-factor); +// $button-border-color: scale-color($button-bg, $lightness: $button-function-factor); // We use this to set the default radius used throughout the core. // $button-radius: $global-radius; -- 2.47.2