Having an issue with Angular Material tabs. I have managed to remove the "slide" effect, but I can't figure out how to modify or remove the black effect behind my tab. Can anyone offer some assistance?
Here is a snippet of my HTML:
<mat-tab-group class="navBar" [@.disabled]="true">
<mat-tab label="all">
<ng-template mat-tab-label>
<div (mouseover)="iconAllOn=true" (mouseout)="iconAllOn=false">
<img class="logoNavBar" *ngIf="!iconAllOn" [src]="cheminImageAllOff">
<img class="logoNavBar" *ngIf="iconAllOn"[src]="cheminImageAllOn">
</div>
</ng-template>
Content 1
</mat-tab>