Right align prices

This commit is contained in:
PCoder 2020-02-02 13:21:01 +05:30
parent 70a3620598
commit a5d393ad20
2 changed files with 7 additions and 1 deletions

View File

@ -102,7 +102,7 @@ def get_line_item_from_stripe_invoice(invoice):
<td class="xs-td-inline">{vm_id}</td>
<td class="xs-td-inline">{ip_addresses}</td>
<td class="xs-td-inline">{period}</td>
<td class="xs-td-inline">{total}</td>
<td class="xs-td-inline text-right dcl-text-right-padding">{total}</td>
<td class="text-right last-td">
<a class="btn btn-order-detail" href="{stripe_invoice_url}" target="_blank">{see_invoice_text}</a>
</td>

View File

@ -2,4 +2,10 @@
.orders-container .table > tbody > tr > td {
vertical-align: middle;
}
@media screen and (min-width:767px){
.dcl-text-right {
padding-right: 20px;
}
}