mirror of
https://github.com/codeninjasuk/showcase.git
synced 2024-11-25 17:07:55 -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;
|
||
|
}
|
||
|
}
|
||
|
}
|