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/border-transitions/_underline-from-center.scss
2021-08-31 11:30:22 -04:00

32 lines
549 B
SCSS

/* Underline From Center */
@mixin underline-from-center {
$duration: $mediumDuration;
@include hacks();
position: relative;
overflow: hidden;
&:before {
content: "";
position: absolute;
z-index: -1;
left: 51%;
right: 51%;
bottom: 0;
background: $activeColor;
height: 4px;
@include prefixed(transition-property, "left, right");
@include prefixed(transition-duration, $duration);
@include prefixed(transition-timing-function, ease-out);
}
&:hover,
&:focus,
&:active {
&:before {
left: 0;
right: 0;
}
}
}