I am trying to edit the custom css with this code but it is keeping the original css, which I don't want the top line there.
Code:
p a {
color: #3c4be7;
line-height: 1.25;
place-self: center;
text-decoration: none;
position:relative;
&:after {
position: absolute;
content: "";
bottom: -3px;
left: 0;
width: 100%;
height: 1px;
border-bottom: 1px solid;
transform: scaleX(0);
transform-origin: 100% 100%;
transition: transform .6s;
transition-timing-function: cubic-bezier(.39,.575,.28,.995);
}
&:hover {
&:after {
transform: scaleX(1);
transform-origin: 0 0;
}
}
}
Can someone help me?