scss-framework/components/_linkfx.scss

15 lines
242 B
SCSS
Raw Normal View History

2025-07-19 23:58:24 +02:00
.component-linkfx {
&:before {
position: absolute;
content: '';
bottom: .29rem;
border-bottom: 1px solid currentColor;
width: 0;
height: 1px;
transition: width .25s;
}
&:hover:before {
width: 100%;
}
}