Right align prices
This commit is contained in:
parent
70a3620598
commit
a5d393ad20
2 changed files with 7 additions and 1 deletions
|
@ -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">{vm_id}</td>
|
||||||
<td class="xs-td-inline">{ip_addresses}</td>
|
<td class="xs-td-inline">{ip_addresses}</td>
|
||||||
<td class="xs-td-inline">{period}</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">
|
<td class="text-right last-td">
|
||||||
<a class="btn btn-order-detail" href="{stripe_invoice_url}" target="_blank">{see_invoice_text}</a>
|
<a class="btn btn-order-detail" href="{stripe_invoice_url}" target="_blank">{see_invoice_text}</a>
|
||||||
</td>
|
</td>
|
||||||
|
|
|
@ -2,4 +2,10 @@
|
||||||
|
|
||||||
.orders-container .table > tbody > tr > td {
|
.orders-container .table > tbody > tr > td {
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (min-width:767px){
|
||||||
|
.dcl-text-right {
|
||||||
|
padding-right: 20px;
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue