I am trying to make a hover underline in a text. Like in this example: How to hover underline start from center instead of left?
a: { color: "#333", textDecoration: "none" },
"a:after": {
content: "''",
position: "absolute",
left: "50%",
bottom: "-2px",
width: "0px",
height: "2px",
background: "#333",
transition: "all 0.45s",
},
"a:hover:after": { left: "0", width: "100%" },
"a:hover": { textDecoration: "none" },
})
--------------------
export function pagepastCat() {
const classes = estilos();
return (
<p>
<a href="" className={classes.a}>
SOME TEXT
</a>
</p>
)
}
But I am getting this.... :(