From ca9c770c38338ce1847357a7712dedb2341888fa Mon Sep 17 00:00:00 2001 From: Kumi Date: Tue, 19 Nov 2024 21:26:21 +0100 Subject: [PATCH] fix: Center-aligns logo in navbar Sets the logo container to use a flexbox for vertical and horizontal centering in the navbar. Adjusts template and CSS to streamline logo presentation and improve aesthetic consistency. --- assets/css/base.css | 5 +++++ templates/base.html | 5 +++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/assets/css/base.css b/assets/css/base.css index fe1f878..72fde41 100644 --- a/assets/css/base.css +++ b/assets/css/base.css @@ -233,6 +233,11 @@ h5 { .slogan { display: none; } + + #logo-wrapper { + display: flex; + justify-content: center; + } } } diff --git a/templates/base.html b/templates/base.html index 9e5f6ef..9ec0a29 100644 --- a/templates/base.html +++ b/templates/base.html @@ -29,7 +29,8 @@ content="https://private.coffee/assets/img/logo-inv_grad.png" /> - {% block title %}{% endblock title %} + {% block title %} + {% endblock title %} - Private.coffee @@ -40,7 +41,7 @@