Skip to content

Commit

Permalink
Fix for libsass(node-sass)
Browse files Browse the repository at this point in the history
  • Loading branch information
ysds committed Mar 14, 2020
1 parent a3130a0 commit 2c5e039
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scss/mixins/_transition.scss
Expand Up @@ -13,7 +13,9 @@
}

@if $enable-transitions {
transition: $transition;
@if nth($transition, 1) != null {
transition: $transition;
}

@if $enable-prefers-reduced-motion-media-query and nth($transition, 1) != null and nth($transition, 1) != none {
@media (prefers-reduced-motion: reduce) {
Expand Down

0 comments on commit 2c5e039

Please sign in to comment.