15 lines
381 B
SCSS
15 lines
381 B
SCSS
@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;
|
|
}
|
|
|
|
// @include transform(scale(1.1)); |