simedkom/public/assets/homepage/sass/elements/_highlights.scss
2025-03-27 21:08:56 +07:00

23 lines
485 B
SCSS

/* Text highlight */
.text-highlight {
position: relative;
z-index: 1;
span {
display: inline-block;
left:-3px;
position: absolute;
z-index: -1;
width: calc(100% + 6px);
}
}
/* Separator animation */
.separator-animation {
width: 0 !important;
@include prefix(transition, all 1s cubic-bezier(0.165, 0.84, 0.44, 1), webkit);
}
.shadow-in {
.separator-animation {
width: calc(100% + 6px) !important;
}
}