Created
March 7, 2021 16:38
-
-
Save zastrow/64a9317aba21c3e69f7cc2257f18c1fc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// This function pairs with the `motion` mixin | |
// to convert a `true` or `false` value to the | |
// appropriate media query value for reduce motion. | |
@function motion($value) { | |
@if $value { | |
@return 'no-preference'; | |
} | |
@else { | |
@return 'reduce'; | |
} | |
} | |
@mixin motion($value: true) { | |
@media (prefers-reduced-motion: motion($value)) { | |
@content; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment