right align amount
parent
2243d00a18
commit
4900c26d51
|
|
@ -133,4 +133,8 @@
|
||||||
table tbody tr.footer td {
|
table tbody tr.footer td {
|
||||||
font-size: small;
|
font-size: small;
|
||||||
vertical-align: bottom;
|
vertical-align: bottom;
|
||||||
|
}
|
||||||
|
|
||||||
|
.text-align-right {
|
||||||
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
@ -86,7 +86,7 @@
|
||||||
<td nowrap>{{t.checkNumber}}</td>
|
<td nowrap>{{t.checkNumber}}</td>
|
||||||
<td nowrap>{{t.fundId === 1 ? 'General' : (t.fundId === 2 ? 'Missions' : 'NA')}}</td>
|
<td nowrap>{{t.fundId === 1 ? 'General' : (t.fundId === 2 ? 'Missions' : 'NA')}}</td>
|
||||||
<td width="99%">{{t.description}}</td>
|
<td width="99%">{{t.description}}</td>
|
||||||
<td nowrap>{{t.amount | currency}}</td>
|
<td nowrap class="text-align-right">{{t.amount | currency}}</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr *ngIf="isFooter(i+1)" class="footer page-break-after">
|
<tr *ngIf="isFooter(i+1)" class="footer page-break-after">
|
||||||
<td colspan="6">
|
<td colspan="6">
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue