mirror of
https://github.com/uhIgnacio/igna.rocks.git
synced 2024-08-15 02:23:12 +00:00
14 lines
316 B
SCSS
14 lines
316 B
SCSS
|
/* Grow Shadow */
|
||
|
@mixin grow-shadow {
|
||
|
@include hacks();
|
||
|
@include prefixed(transition-duration, $mediumDuration);
|
||
|
@include prefixed(transition-property, "box-shadow, transform");
|
||
|
|
||
|
&:hover,
|
||
|
&:focus,
|
||
|
&:active {
|
||
|
box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
|
||
|
@include prefixed(transform, scale(1.1));
|
||
|
}
|
||
|
}
|