Hover/scss/hover/_grow-rotate.scss

12 lines
210 B
SCSS

/* Grow Rotate */
@mixin grow-rotate {
display: inline-block;
transition-duration: $defaultDuration;
transition-property: transform;
@extend %hacks;
&:hover {
transform: scale(1.1) rotate(4deg);
}
}