From 176bb824702386ba9e05b080227d15115e0f0fe7 Mon Sep 17 00:00:00 2001 From: Piotr Delawski Date: Tue, 31 Jul 2018 18:47:10 +0200 Subject: [PATCH] Use correct color for primary button bottom border. (#8227) The primary button had incorrect bottom border color. Instead of `button` it used `primary` as the base for shading. --- packages/components/src/button/style.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/components/src/button/style.scss b/packages/components/src/button/style.scss index 63fc4b73c473f7..f3cf866928c31a 100644 --- a/packages/components/src/button/style.scss +++ b/packages/components/src/button/style.scss @@ -61,7 +61,7 @@ &.is-primary { background: color( theme( button ) ); - border-color: color( theme( button ) shade( 20% ) ) color( theme( button ) shade( 25% ) ) color( theme( primary ) shade( 25% ) ); + border-color: color( theme( button ) shade( 20% ) ) color( theme( button ) shade( 25% ) ) color( theme( button ) shade( 25% ) ); box-shadow: inset 0 -1px 0 color( theme( button ) shade( 25% ) ); color: $white; text-decoration: none;