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">
<th
*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
>
<span i18n>Last All Time High</span>
<ng-container i18n>Last All Time High</ng-container>
</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">
<gf-value
[isDate]="true"
@ -26,13 +26,13 @@
</ng-container>
<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
>Change from All Time High</span
>
<span class="d-block d-sm-none text-nowrap" i18n>from ATH</span>
</th>
<td *matCellDef="let element" class="text-right" mat-cell>
<td *matCellDef="let element" class="px-2 text-right" mat-cell>
<gf-value
class="d-inline-block justify-content-end"
size="medium"

Loading…
Cancel
Save