I am encountering an issue with a button on my page. Here is the code for the button:
<button mat-icon-button color="black" style="height: 21px; bottom: 8px;" *ngIf="!transaction.HasMatch" (click)="matchPayable($event, transaction)">
<mat-icon style="line-height: 20px;">playlist_add</mat-icon>
</button>
When I click on the button, the focus is not exactly around the icon as shown in this screenshot. I need to move the focus downwards, but I'm unsure how to do this. Alternatively, removing the focus effect completely could be a solution, but again, I'm unsure of how to achieve that.