From caf03ff767896b8f82d7e5581431f8f31efb4049 Mon Sep 17 00:00:00 2001 From: Tom Teichler <tom.teichler@teckids.org> Date: Wed, 2 Dec 2020 21:51:25 +0100 Subject: [PATCH] Fix navbar --- static/css/style.css | 4 ++++ templates/base.html | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/static/css/style.css b/static/css/style.css index 86c6540..58874f8 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -8,11 +8,15 @@ a { .navbar { border-bottom: var(--teckids-primary-dark) 3px solid; + padding-top: 0; + padding-bottom: 0; } .navbar-brand { padding: 0; height: 50px; + margin-top: 10px; + margin-bottom: 10px; } img#logo { diff --git a/templates/base.html b/templates/base.html index d6e6e6e..04f38b5 100644 --- a/templates/base.html +++ b/templates/base.html @@ -82,7 +82,7 @@ {% block template_content_head %}{% endblock %} </header> - <main role="main"? + <main role="main"> <!-- Main Content --> {% block content %}{% endblock %} </main> -- GitLab