From 6985f830869dd614189f20b7b483e7e514e2df56 Mon Sep 17 00:00:00 2001 From: Tobias Mieves <tobias.mieves@tu-dortmund.de> Date: Sun, 10 Sep 2023 14:57:00 +0200 Subject: [PATCH] fix: Fix margin at the bottom of the screen with drawer open --- templates/base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/base.html b/templates/base.html index bda8939..98ce671 100644 --- a/templates/base.html +++ b/templates/base.html @@ -60,7 +60,7 @@ <!-- Page content here --> <main> - <div class="p-4 mb-20"> + <div class="p-4 mb-20 lg:mb-0"> {% block content %} {% endblock %} </div> -- GitLab