I use the mat-tab-nav-bar instead of the mat-group because of the routing. But in the mat-group there was a "blue" line under the current tab. Is there a possibility in "mat-tab-nav-bar" to get the same function?
how do I have to add "border-bottom: blue;"
my code looks like this
<nav mat-tab-nav-bar>
<a mat-tab-link routerLink="">Home</a>
<a mat-tab-link routerLink="Login">User Login</a>
<a mat-tab-link routerLink="Registration">User Registration</a>
</nav>
<router-outlet></router-outlet>
You are missing routerLinkActive, just place this code and it should work.