I'm trying to follow material-ui custom styles and link but am not sure how to override classes
and use withStyles
<Breadcrumbs aria-label="breadcrumb" separator=" " className="menu">
<Link color="inherit" href="/home">
Home
</Link>
</Breadcrumbs>
I've modified global app.css
file
a:hover{
border-bottom: 1px solid red
}
And the outcome is like
Home
----
---- <- I have 2 underlines now when hovering over the link. The bottom one will be red.
How do I override this such as following?
Home
---- <- only 1 red underline shown when hovering over the link