mirror of
https://github.com/uhIgnacio/igna.rocks.git
synced 2024-08-15 02:23:12 +00:00
20 lines
398 B
SCSS
20 lines
398 B
SCSS
|
/* Pop */
|
||
|
@include keyframes(#{$nameSpace}-pop) {
|
||
|
50% {
|
||
|
@include prefixed(transform, scale(1.2));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@mixin pop {
|
||
|
@include hacks();
|
||
|
|
||
|
&:hover,
|
||
|
&:focus,
|
||
|
&:active {
|
||
|
@include prefixed(animation-name, #{$nameSpace}-pop);
|
||
|
@include prefixed(animation-duration, $mediumDuration);
|
||
|
@include prefixed(animation-timing-function, linear);
|
||
|
@include prefixed(animation-iteration-count, 1);
|
||
|
}
|
||
|
}
|