Html – Angular Material Button Color Not Applying with routerLinkActive
I'm using Angular Material for my application and have the following button setup <mat-toolbar> <span> <a routerLink="/">My Messages</a> </span> <ul> <li> <a mat-button routerLink="/create" routerLinkActive="mat-accent"> New Post </a> </li> </ul> </mat-toolbar> Issue: When I navigate to the /create route, I…