Skip to content

Commit

Permalink
fix: make xyz utility classes !important
Browse files Browse the repository at this point in the history
  • Loading branch information
mattaningram committed Jun 28, 2021
1 parent b6e2b7f commit 03503f5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/core/src/_core.scss
Original file line number Diff line number Diff line change
Expand Up @@ -113,19 +113,19 @@
}
}

// so elements dont take space during animation
// so elements don't take space during animation
%xyz-absolute {
position: absolute;
position: absolute !important;
}

// pauses animations
%xyz-paused {
animation-play-state: paused;
animation-play-state: paused !important;
}

// turns off animations
%xyz-none {
animation: none;
animation: none !important;
}

// for reduced motion users
Expand Down

0 comments on commit 03503f5

Please sign in to comment.