Add div with col class around the div.row that contains the header links.

Remove display:table from the .col styling
This commit is contained in:
leigh-mil 2020-02-11 10:56:16 -05:00
parent 611672d449
commit b6b093850a
2 changed files with 30 additions and 30 deletions

View File

@ -20,7 +20,6 @@
.col--grow { .col--grow {
overflow: inherit; overflow: inherit;
display: table;
min-height: 10rem; min-height: 10rem;
} }

View File

@ -17,6 +17,7 @@
<h1>{{ portfolio.name }}</h1> <h1>{{ portfolio.name }}</h1>
</div> </div>
</div> </div>
<div class="col">
<div class='row links'> <div class='row links'>
{% if user_can(permissions.VIEW_PORTFOLIO_ADMIN) %} {% if user_can(permissions.VIEW_PORTFOLIO_ADMIN) %}
{{ Link( {{ Link(
@ -47,6 +48,6 @@
active=request.url_rule.endpoint == "portfolios.reports", active=request.url_rule.endpoint == "portfolios.reports",
) }} ) }}
{% endif %} {% endif %}
</div>
</div> </div>
</div> </div>