#262 right alignment of numbers on blocks-list

This commit is contained in:
Gustavo Cortez 2014-02-12 14:16:20 -03:00
parent cae872e575
commit 0d803a533b
1 changed files with 4 additions and 4 deletions

View File

@ -31,8 +31,8 @@
<tr>
<th>Height</th>
<th>Timestamp</th>
<th>Transactions</th>
<th>Size</th>
<th class="text-right">Transactions</th>
<th class="text-right">Size</th>
</tr>
</thead>
<tbody>
@ -42,8 +42,8 @@
<tr class="fader" data-ng-repeat='b in blocks'>
<td><a href="/block/{{b.hash}}">{{b.height}}</a></td>
<td>{{b.time * 1000 | date:'medium'}}</td>
<td>{{b.txlength}}</td>
<td>{{b.size}}</td>
<td class="text-right">{{b.txlength}}</td>
<td class="text-right">{{b.size}}</td>
</tr>
</tbody>
</table>