padding fix

This commit is contained in:
Arvind Tiwari 2017-09-28 00:59:49 +05:30
parent 77b2684217
commit 8b9935f677
2 changed files with 2 additions and 4 deletions

View File

@ -618,9 +618,7 @@
left: 8px;
}
.table-switch .last-td {
position: absolute;
bottom: 13px;
right: 0;
text-align: right;
}
.table-switch tbody tr .xs-td-inline {
text-align: right;

View File

@ -31,7 +31,7 @@
<td class="xs-td-inline" data-header="{% trans 'Order Nr.' %}">{{ order.id }}</td>
<td class="xs-td-bighalf" data-header="{% trans 'Date' %}">{{ order.created_at | date:"M d, Y H:i" }}</td>
<td class="xs-td-smallhalf" data-header="{% trans 'Amount' %}">{{ order.price|unlocalize }}</td>
<td class="text-right xs-td-inline">
<td class="text-right last-td">
<a class="btn btn-order-detail" href="{% url 'hosting:orders' order.pk %}">{% trans 'See Invoice' %}</a>
</td>
</tr>