Bring balance closer to active TO table

This commit is contained in:
Patrick Smith 2019-01-15 18:23:44 -05:00
parent 26c898da0d
commit c1584087e3
2 changed files with 10 additions and 7 deletions

View File

@ -85,6 +85,8 @@
} }
.portfolio-total-balance { .portfolio-total-balance {
margin-top: -$gap;
.row {
flex-direction: row-reverse; flex-direction: row-reverse;
margin: 2 * $gap 0; margin: 2 * $gap 0;
padding-right: 14rem; padding-right: 14rem;
@ -94,3 +96,4 @@
} }
} }
} }
}

View File

@ -125,8 +125,8 @@
{% if active_task_orders %} {% if active_task_orders %}
{{ TaskOrderList(active_task_orders, label='success') }} {{ TaskOrderList(active_task_orders, label='success') }}
<div class='panel'> <div class='panel portfolio-total-balance'>
<div class='panel__content portfolio-total-balance row'> <div class='panel__content row'>
<span>{{ total_balance | dollars }}</span> <span>{{ total_balance | dollars }}</span>
<span class='label label--success'>Total Active Balance</span> <span class='label label--success'>Total Active Balance</span>
</div> </div>