1
0
Fork 0
mirror of https://github.com/uhIgnacio/igna.rocks.git synced 2024-08-15 02:23:12 +00:00
igna.rocks/assets/js/scss/effects/2d-transitions/_pulse-grow.scss
2021-08-31 11:30:22 -04:00

20 lines
485 B
SCSS

/* Pulse Grow */
@include keyframes(#{$nameSpace}-pulse-grow) {
to {
@include prefixed(transform, scale(1.1));
}
}
@mixin pulse-grow {
@include hacks();
&:hover,
&:focus,
&:active {
@include prefixed(animation-name, #{$nameSpace}-pulse-grow);
@include prefixed(animation-duration, $mediumDuration);
@include prefixed(animation-timing-function, linear);
@include prefixed(animation-iteration-count, infinite);
@include prefixed(animation-direction, alternate);
}
}