mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
10 lines
192 B
SCSS
10 lines
192 B
SCSS
|
@mixin transition($transition...) {
|
||
|
@if $enable-transitions {
|
||
|
@if length($transition) == 0 {
|
||
|
transition: $transition-base;
|
||
|
} @else {
|
||
|
transition: $transition;
|
||
|
}
|
||
|
}
|
||
|
}
|