5 lines
173 B
SCSS
5 lines
173 B
SCSS
|
@mixin transition() {
|
||
|
transition: background-color 200ms ease-in 0s, border-color 200ms ease-in 0s, box-shadow 200ms ease-in 0s, color 200ms ease-in 0s;
|
||
|
@content;
|
||
|
}
|