Skip to content

Commit

Permalink
Fix transition for buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamindehli committed Feb 21, 2024
1 parent 6af12bd commit a30e576
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/stories/Button.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@
@include appearance(none);
@include border-radius(0);
@include transition(
filter 200ms $default-transition,
background-color 200ms $default-transition,
color 200ms $default-transition,
border-color 200ms $default-transition
filter $default-transition,
background-color $default-transition,
color $default-transition,
border-color $default-transition
);
font-family: $default-font;
border-style: solid;
Expand Down Expand Up @@ -90,7 +90,7 @@
}

&.default {
background-color: transparent;
background-color: #fff;
color: $color-primary-text;
border-color: $color-secondary-light;
&:not(.hasTheme) {
Expand Down

0 comments on commit a30e576

Please sign in to comment.