Skip to content

Commit

Permalink
Fix transition values
Browse files Browse the repository at this point in the history
  • Loading branch information
francoispluchino committed Jan 5, 2022
1 parent 479606c commit aa25bfb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scss/_mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
}

@mixin transition($transition) {
-webkit-transition: $transition;
-o-transition: $transition;
transition: $transition;
-webkit-transition: #{$transition};
-o-transition: #{$transition};
transition: #{$transition};
}

0 comments on commit aa25bfb

Please sign in to comment.