Fixed some issues with height scrolling layout

This commit is contained in:
Corban-Lee Jones 2024-06-19 15:35:34 +01:00
parent 3867c2a4ea
commit 8bb202e81d

View File

@ -29,14 +29,16 @@
{% block stylesheets %}{% endblock stylesheets %}
</head>
<body data-bs-theme="light" class="bg-body vh-100">
<body data-bs-theme="light" class="bg-body d-flex flex-column vh-100 overflow-hidden">
<div class="h-100 d-flex flex-column align-items-stretch flex-nowrap">
{% include 'includes/navbar.html' %}
{% block content %}{% endblock content %}
{% include 'includes/footer.html' %}
{% include 'includes/navbar.html' %}
<div class="flex-grow-1 overflow-y-auto" style="max-height: calc(100vh - 136px);">
{% block content %}{% endblock content %}
</div>
{% include 'includes/footer.html' %}
{% include 'includes/toasts.html' %}
<script>