TIF_E41201027/public/Frontend/assets/scss/_mixins.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));