OSDN Git Service

Modify the dependency on path
[bytom/vapor.git] / tools / side_chain_tool / web / node_modules / bootstrap / scss / mixins / _transition.scss
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
10   @media screen and (prefers-reduced-motion: reduce) {
11     transition: none;
12   }
13 }