Hover/scss/hover/_pulse-grow.scss

20 lines
336 B
SCSS

/* Pulse Grow */
@keyframes pulse-grow {
to {
transform: scale(1.1);
}
}
@mixin pulse-grow {
display: inline-block;
@extend %hacks;
&:hover {
animation-name: pulse-grow;
animation-duration: $defaultDuration;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
}
}