dont rely on css calc

This commit is contained in:
Alex Rothberg 2018-02-12 18:11:32 -05:00
parent 2baa5d3acd
commit 91794ecb18
2 changed files with 9 additions and 3 deletions

View File

@ -28,8 +28,12 @@
background: white; background: white;
} }
#terminado-container { .terminado-container-container {
padding-top: @page-header-padding; padding-top: @page-header-padding;
height: ~"calc(100% - @{page-header-padding})"; height: 100%;
}
#terminado-container {
height: 100%;
} }
} }

View File

@ -23,7 +23,9 @@ data-ws-path="{{ws_path}}"
{% endblock headercontainer %} {% endblock headercontainer %}
{% block site %} {% block site %}
<div id="terminado-container" class="container"></div> <div class="terminado-container-container">
<div id="terminado-container" class="container"></div>
</div>
{% endblock %} {% endblock %}
{% block script %} {% block script %}