Browse Source

Minor improvements

pull/2466/head
Thomas 2 years ago
parent
commit
9dc797cdcc
  1. 10
      libs/ui/src/lib/benchmark/benchmark.component.html

10
libs/ui/src/lib/benchmark/benchmark.component.html

@ -9,12 +9,12 @@
<ng-container matColumnDef="date"> <ng-container matColumnDef="date">
<th <th
*matHeaderCellDef *matHeaderCellDef
class="d-none d-lg-table-cell justify-content-end px-1" class="d-none d-lg-table-cell px-2 text-right"
mat-header-cell mat-header-cell
> >
<span i18n>Last All Time High</span> <ng-container i18n>Last All Time High</ng-container>
</th> </th>
<td *matCellDef="let element" class="d-none d-lg-table-cell px-1" mat-cell> <td *matCellDef="let element" class="d-none d-lg-table-cell px-2" mat-cell>
<div class="d-flex justify-content-end"> <div class="d-flex justify-content-end">
<gf-value <gf-value
[isDate]="true" [isDate]="true"
@ -26,13 +26,13 @@
</ng-container> </ng-container>
<ng-container matColumnDef="change"> <ng-container matColumnDef="change">
<th *matHeaderCellDef class="text-right" mat-header-cell> <th *matHeaderCellDef class="px-2 text-right" mat-header-cell>
<span class="d-none d-sm-block text-nowrap" i18n <span class="d-none d-sm-block text-nowrap" i18n
>Change from All Time High</span >Change from All Time High</span
> >
<span class="d-block d-sm-none text-nowrap" i18n>from ATH</span> <span class="d-block d-sm-none text-nowrap" i18n>from ATH</span>
</th> </th>
<td *matCellDef="let element" class="text-right" mat-cell> <td *matCellDef="let element" class="px-2 text-right" mat-cell>
<gf-value <gf-value
class="d-inline-block justify-content-end" class="d-inline-block justify-content-end"
size="medium" size="medium"

Loading…
Cancel
Save