mirror of
https://github.com/Hopiu/bootstrap.git
synced 2026-04-12 16:40:59 +00: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;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|