I want to add custom CSS styles to active router links:
<a [routerLink]='link'>{{name}}</a>
Here's what I attempted so far (Using the default router-link-active class):
.router-link-active {
color: #000;
font-weight: bold;
}
The styling isn't taking effect, and I'm not sure why.