Can you correct my code for the underline animation in the navigation menu, heres the code:
header-nav-item {
position: relative;
}
.header-nav-item::before {
content:"";
position: absolute;
display: block;
width: 100%;
height: 2px;
bottom: 0;
left: 0;
background-color: #ffff;
transform: scaleX(0);
transition: transform 0.5s ease;
}
.header-nav-item:not(.header-nav-item--active):hover::before {
transform: scaleX(0.75);
}