741f9bd91d
Changed position of the map container ("jumbo") from absolute to relative because with absolute position it did not move down when the menu expanded.
29 lines
408 B
HTML
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 %}
|