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/background-transitions/_fade.scss
2021-08-31 11:30:22 -04:00

14 lines
277 B
SCSS

/* Fade */
@mixin fade {
@include hacks();
overflow: hidden;
@include prefixed(transition-duration, $mediumDuration);
@include prefixed(transition-property, "color, background-color");
&:hover,
&:focus,
&:active {
background-color: $activeColor;
color: white;
}
}