Skip to content

Commit

Permalink
fix(button): Fixes the regression that button colors changed due to t…
Browse files Browse the repository at this point in the history
…he theme.
  • Loading branch information
ffriedl89 authored and tomheller committed May 18, 2020
1 parent 0bc7e34 commit 2d0bafc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions libs/barista-components/button/src/_button-theme.scss
@@ -1,7 +1,7 @@
.dt-button {
--dt-button-default-color: var(--dt-theme-main-default-color);
--dt-button-hover-color: var(--dt-theme-main-hover-color);
--dt-button-active-color: var(--dt-theme-main-active-color);
--dt-button-default-color: #{$turquoise-600};
--dt-button-hover-color: #{$turquoise-700};
--dt-button-active-color: #{$turquoise-800};
}

.dt-button.dt-color-warning {
Expand Down

0 comments on commit 2d0bafc

Please sign in to comment.