forked from data.coop/website
17 lines
364 B
SCSS
17 lines
364 B
SCSS
|
// stylelint-disable property-blacklist
|
||
|
@mixin transition($transition...) {
|
||
|
@if $enable-transitions {
|
||
|
@if length($transition) == 0 {
|
||
|
transition: $transition-base;
|
||
|
} @else {
|
||
|
transition: $transition;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@if $enable-prefers-reduced-motion-media-query {
|
||
|
@media (prefers-reduced-motion: reduce) {
|
||
|
transition: none;
|
||
|
}
|
||
|
}
|
||
|
}
|