Browse Source
Task/harmonize line height in benchmark component (#7353)
Harmonize line height
pull/7354/head
Thomas Kaul
4 days ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
5 additions and
1 deletions
-
libs/ui/src/lib/benchmark/benchmark.component.html
|
|
|
@ -22,7 +22,11 @@ |
|
|
|
<th *matHeaderCellDef class="px-1" mat-header-cell mat-sort-header> |
|
|
|
<ng-container i18n>Name</ng-container> |
|
|
|
</th> |
|
|
|
<td *matCellDef="let element" class="px-1 text-nowrap" mat-cell> |
|
|
|
<td |
|
|
|
*matCellDef="let element" |
|
|
|
class="line-height-normal px-1 text-nowrap" |
|
|
|
mat-cell |
|
|
|
> |
|
|
|
<div class="text-truncate"> |
|
|
|
{{ element?.name }} |
|
|
|
</div> |
|
|
|
|