mirror of
https://github.com/uhIgnacio/igna.rocks.git
synced 2024-08-15 02:23:12 +00:00
14 lines
277 B
SCSS
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;
|
|
}
|
|
}
|