From ef6095fef0aae04c482d012f5f00997f05247585 Mon Sep 17 00:00:00 2001 From: Corbin Hesse Date: Wed, 16 Dec 2015 15:05:18 -0600 Subject: [PATCH] Modify Button Background to Background Color --- scss/components/_button.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scss/components/_button.scss b/scss/components/_button.scss index 44bf8d449..71bbf4d32 100644 --- a/scss/components/_button.scss +++ b/scss/components/_button.scss @@ -113,11 +113,11 @@ $button-opacity-disabled: 0.25 !default; $color: $button-color; } - background: $background; + background-color: $background; color: $color; &:hover, &:focus { - background: $background-hover; + background-color: $background-hover; color: $color; } } @@ -126,7 +126,7 @@ $button-opacity-disabled: 0.25 !default; @mixin button-hollow { &, &:hover, &:focus { - background: transparent; + background-color: transparent; } } -- 2.47.2