Merge pull request #271 from cmgustavo/bug/02blocklist-style

#262 right alignment of numbers on blocks-list
This commit is contained in:
Mario Colque 2014-02-12 15:54:36 -02:00
commit 59471b0740
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>