I have upgraded Angular material to 9, but after upgrade when I sort mat-table columns, after sorting a bottom border appears under the sorted column heading and this border disappear on mouse-click I checked browser CSS and found out that below CSS is causing this problem
CSS
[mat-sort-header].cdk-keyboard-focused .mat-sort-header-container,[mat-sort-header].cdk-program-focused .mat-sort-header-container
{border-bottom:solid 1px currentColor}
but this CSS is not in my code I am not sure from where it is taking, I tried to overwrite but no results
HTMl Heading code
<ng-container matColumnDef="Date">
<th style="background-color: white;" mat-header-cell mat-sort-header *matHeaderCellDef
><span>Date</span></th>
<td mat-cell *matCellDef="let item">
{{item.Date}}
</td>
</ng-container>
is there anyway I can overwrite or get rid of this