mirror of
https://github.com/uhIgnacio/igna.rocks.git
synced 2024-08-15 02:23:12 +00:00
13 lines
276 B
SCSS
13 lines
276 B
SCSS
|
/* Bounce Out */
|
||
|
@mixin bounce-out {
|
||
|
@include hacks();
|
||
|
@include prefixed(transition-duration, $slowDuration);
|
||
|
|
||
|
&:hover,
|
||
|
&:focus,
|
||
|
&:active {
|
||
|
@include prefixed(transform, scale(.8));
|
||
|
@include prefixed(transition-timing-function, cubic-bezier(.47,2.02,.31,-0.36));
|
||
|
}
|
||
|
}
|