1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2024-11-01 12:04:15 +00:00
webvirtcloud/dev/scss/bootstrap/mixins/_transition.scss

27 lines
661 B
SCSS
Raw Normal View History

// stylelint-disable property-disallowed-list
2020-05-19 16:53:54 +00:00
@mixin transition($transition...) {
@if length($transition) == 0 {
$transition: $transition-base;
}
@if length($transition) > 1 {
@each $value in $transition {
@if $value == null or $value == none {
@warn "The keyword 'none' or 'null' must be used as a single argument.";
}
}
}
@if $enable-transitions {
@if nth($transition, 1) != null {
transition: $transition;
}
@if $enable-reduced-motion and nth($transition, 1) != null and nth($transition, 1) != none {
2020-05-19 16:53:54 +00:00
@media (prefers-reduced-motion: reduce) {
transition: none;
}
}
}
}