Fix block view in explorer

This commit is contained in:
Martin Boehm 2018-09-18 12:44:07 +02:00
parent c5ada602d4
commit 8c1ccda82e
2 changed files with 4 additions and 5 deletions

View File

@ -182,7 +182,6 @@ h3 {
}
.ellipsis {
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;

View File

@ -44,7 +44,7 @@
<tbody>
<tr>
<td style="width: 25%;">Version</td>
<td class="data">{{$b.Version}}</td>
<td class="data ellipsis">{{$b.Version}}</td>
</tr>
<tr>
<td>Merkle Root</td>
@ -52,15 +52,15 @@
</tr>
<tr>
<td>Nonce</td>
<td class="data">{{$b.Nonce}}</td>
<td class="data ellipsis">{{$b.Nonce}}</td>
</tr>
<tr>
<td>Bits</td>
<td class="data">{{$b.Bits}}</td>
<td class="data ellipsis">{{$b.Bits}}</td>
</tr>
<tr>
<td>Difficulty</td>
<td class="data">{{$b.Difficulty}}</td>
<td class="data ellipsis">{{$b.Difficulty}}</td>
</tr>
</tbody>
</table>