mirror of
https://github.com/wassname/talk.git
synced 2026-06-30 02:23:06 +08:00
22 lines
452 B
SCSS
22 lines
452 B
SCSS
/**
|
|
* Mixins
|
|
*/
|
|
|
|
|
|
@mixin transform($transforms) {
|
|
-moz-transform: $transforms;
|
|
-o-transform: $transforms;
|
|
-ms-transform: $transforms;
|
|
-webkit-transform: $transforms;
|
|
transform: $transforms;
|
|
}
|
|
|
|
@mixin transition($args, $duration) {
|
|
-webkit-transition: $args;
|
|
-moz-transition: $args;
|
|
-ms-transition: $args;
|
|
-o-transition: $args;
|
|
transition: $args;
|
|
-webkit-transition-duration: $duration;
|
|
transition-duration: $duration;
|
|
} |