Graphs and tables for your Spotify account.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
274 B

  1. @mixin transition($transition...) {
  2. @if $enable-transitions {
  3. @if length($transition) == 0 {
  4. transition: $transition-base;
  5. } @else {
  6. transition: $transition;
  7. }
  8. }
  9. @media screen and (prefers-reduced-motion: reduce) {
  10. transition: none;
  11. }
  12. }