Various bugfixes and removing unfairly cheap joke.

This commit is contained in:
softsimon
2020-03-28 16:38:28 +07:00
parent 3f35671fb5
commit 2f83da7ce9
5 changed files with 4 additions and 7 deletions

View File

@@ -40,7 +40,7 @@
<tbody>
<tr>
<td class="td-width">Hash</td>
<td><a [routerLink]="['/block/', block.id]" title="{{ block.id }}">{{ block.id | shortenString : 13 }}</a> <app-clipboard [text]="block.id"></app-clipboard></td>
<td><a [routerLink]="['/block/', block.id]" title="{{ block.id }}">{{ block.id | shortenString : 13 }}</a> <app-clipboard class="d-none d-sm-inline-block" [text]="block.id"></app-clipboard></td>
</tr>
<tr *ngIf="block.medianFee !== undefined">
<td>Median fee</td>

View File

@@ -11,6 +11,6 @@
@media (max-width: 767.98px) {
.td-width {
width: 150px;
width: 140px;
}
}