I am currently delving into the world of material-ui custom styles and came across this helpful resource. However, I find myself a bit lost in how to properly override the classes
using withStyles
.
<Breadcrumbs aria-label="breadcrumb" separator=" " className="menu">
<Link color="inherit" href="/home">
Home
</Link>
</Breadcrumbs>
In an attempt to solve this issue, I made changes to the global app.css
file.
a:hover{
border-bottom: 1px solid red
}
The result displayed was as follows:
Home
----
---- <- Upon hovering over the link, there are now two underlines present. The lower one is rendered in red.
My goal is to achieve the following:
Home
---- <- only displaying a single red underline upon hover