Hover/scss/hover/_glow.scss

12 lines
194 B
SCSS

/* Glow */
@mixin glow {
display: inline-block;
transition-duration: $defaultDuration;
transition-property: box-shadow;
@extend %hacks;
&:hover {
box-shadow: 0 0 8px $shadowColour;
}
}