This commit is contained in:
Daniel Ponte 2024-12-17 12:31:48 -05:00
parent 0b56c2551e
commit 6db3e082c9
3 changed files with 5 additions and 2 deletions

View file

@ -3,7 +3,7 @@
<ng-container matColumnDef="icon"> <ng-container matColumnDef="icon">
<th mat-header-cell *matHeaderCellDef></th> <th mat-header-cell *matHeaderCellDef></th>
<td mat-cell *matCellDef="let tg"> <td mat-cell *matCellDef="let tg">
<mat-icon>{{ (tg | iconify).iconSvg! }}</mat-icon> <mat-icon class="tgIcon">{{ (tg | iconify).iconSvg! }}</mat-icon>
</td> </td>
</ng-container> </ng-container>
<ng-container matColumnDef="sysID"> <ng-container matColumnDef="sysID">

View file

@ -9,6 +9,10 @@ table {
box-sizing: border-box; box-sizing: border-box;
} }
mat-icon.tgIcon {
transform: scale(0.7);
}
tr.mat-mdc-row { tr.mat-mdc-row {
height: 1.6rem !important; height: 1.6rem !important;
font-size: 9pt; font-size: 9pt;

View file

@ -15,7 +15,6 @@ talkgroups {
} }
.tgTools button { .tgTools button {
width: 100%;
} }
.spinner { .spinner {