mirror of
https://github.com/tenrok/vue-form-wizard.git
synced 2026-06-23 06:50:34 +03:00
57c0c7fbb6
Css cleanup (reduce css size in half)
21 lines
606 B
SCSS
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;
|
|
}
|