2
0
mirror of https://github.com/tenrok/vue-form-wizard.git synced 2026-06-23 06:50:34 +03:00
Files
vue-form-wizard/src/assets/tab-wizard/mixins/_vendor-prefixes.scss
T
cristijora 57c0c7fbb6 Full color customization
Css cleanup (reduce css size in half)
2017-04-16 18:18:15 +03:00

21 lines
606 B
SCSS

@mixin box-shadow($shadow...) {
-webkit-box-shadow: $shadow; // iOS <4.3 & Android <4.1
box-shadow: $shadow;
}
@mixin transition($time, $type){
-webkit-transition: all $time $type;
-moz-transition: all $time $type;
-o-transition: all $time $type;
-ms-transition: all $time $type;
transition: all $time $type;
}
@mixin transition-font-size($time, $type) {
-webkit-transition: font-size $time $type;
-moz-transition: font-size $time $type;
-o-transition: font-size $time $type;
-ms-transition: font-size $time $type;
transition: font-size $time $type;
}