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/shadow-and-glow-transitions/_glow.scss
2021-08-31 11:30:22 -04:00

12 lines
229 B
SCSS

/* Glow */
@mixin glow {
@include hacks();
@include prefixed(transition-duration, $mediumDuration);
@include prefixed(transition-property, box-shadow);
&:hover,
&:focus,
&:active {
box-shadow: 0 0 8px $shadowColor;
}
}