2023-09-19 15:38:21 -04:00

14 lines
346 B
SCSS
Executable File

@mixin transition($time) {
-webkit-transition: all $time ease-out 0s;
-moz-transition: all $time ease-out 0s;
-ms-transition: all $time ease-out 0s;
-o-transition: all $time ease-out 0s;
transition: all $time ease-out 0s;
}
@mixin transform($value) {
-webkit-transform: $value;
-ms-transform: $value;
transform: $value;
}