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,12 +85,15 @@
} }
.portfolio-total-balance { .portfolio-total-balance {
flex-direction: row-reverse; margin-top: -$gap;
margin: 2 * $gap 0; .row {
padding-right: 14rem; flex-direction: row-reverse;
margin: 2 * $gap 0;
padding-right: 14rem;
.label { .label {
margin: 0 2 * $gap; margin: 0 2 * $gap;
}
} }
} }
} }

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>