From 2ab9d1c5a3ae74f01b5efe0acded9c38e8755cda Mon Sep 17 00:00:00 2001 From: Tobias Mieves <tobias.mieves@tu-dortmund.de> Date: Fri, 8 Sep 2023 18:24:46 +0200 Subject: [PATCH] fix: Fix white bar at the bottom of the screen --- templates/base.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/base.html b/templates/base.html index 414c25c..bda8939 100644 --- a/templates/base.html +++ b/templates/base.html @@ -10,7 +10,7 @@ {% block head %}{% endblock %} </head> <body> -<div class="navbar mb-2 shadow-lg bg-neutral text-neutral-content rounded-box max-h-20"> +<div class="navbar shadow-lg bg-neutral text-neutral-content rounded-box max-h-24 mb-3.5"> <div class="flex-none lg:hidden"> <label for="my-drawer-3" class="btn btn-square btn-ghost"> <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" @@ -60,7 +60,7 @@ <!-- Page content here --> <main> - <div class="p-4"> + <div class="p-4 mb-20"> {% block content %} {% endblock %} </div> -- GitLab