twindy
Version:
CSS Framework written in Stylus inspired by Tailwind and NIB
17 lines (15 loc) • 500 B
text/stylus
@require "../mixins/base.styl";
tw-aria() {
if __tw_once("aria") {
// From https://hankchizljaw.com/wrote/a-modern-css-reset/
// Remove all animations and transitions for people that prefer not to see them
@media (prefers-reduced-motion: reduce) {
*, *::before, *::after {
animation-duration: 0.01ms ;
animation-iteration-count: 1 ;
transition-duration: 0.01ms ;
scroll-behavior: auto ;
}
}
}
}