ojuso-map/ojusomap/templates/base_with_jumbo.html
Naomi 741f9bd91d Fixed https://gitlab.com/autonomic-cooperative/ojuso-map/issues/75
Changed position of the map container ("jumbo") from absolute to relative because with absolute position it did not move down when the menu expanded.
2018-09-23 17:20:41 +01:00

29 lines
408 B
HTML

{% extends "base.html" %}
{% block stylesheets %}
{{ block.super }}
<style>
.jumbo {
height: calc(100% - 52px);
width: 100%;
position: relative;
right: 0;
bottom: 0;
left: 0;
}
.navbar {
margin-bottom:0;
}
</style>
{% endblock %}
{% block content %}
<div class="jumbo">
{% block inner_content %}
{% endblock %}
</div><!-- /.container -->
{% endblock %}