From eada16fe9bf05840cd06a946b8fe230d276733e5 Mon Sep 17 00:00:00 2001 From: Maya Benari Date: Fri, 8 Mar 2019 14:18:57 -0800 Subject: [PATCH] Change button background to background-color --- src/stylesheets/elements/_buttons.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/stylesheets/elements/_buttons.scss b/src/stylesheets/elements/_buttons.scss index 85e83627f9..ca58c49653 100644 --- a/src/stylesheets/elements/_buttons.scss +++ b/src/stylesheets/elements/_buttons.scss @@ -103,7 +103,7 @@ $button-stroke: inset 0 0 0 units($theme-button-stroke-width); } &.usa-button--inverse { - background: transparent; + background-color: transparent; box-shadow: $button-stroke color('base-lighter'); color: color('base-lighter'); @@ -113,14 +113,14 @@ $button-stroke: inset 0 0 0 units($theme-button-stroke-width); &:hover, &.usa-button--hover { - background: transparent; + background-color: transparent; box-shadow: $button-stroke color('base-lightest'); color: color('base-lightest'); } &:active, &.usa-button--active { - background: transparent; + background-color: transparent; box-shadow: $button-stroke color('white'); color: color('white'); }