From 5a6d6d403cb6bf59e30a3eb29c9e5eec26800136 Mon Sep 17 00:00:00 2001 From: Kumi Date: Thu, 28 Mar 2024 14:12:20 +0100 Subject: [PATCH] feat: standardize navbar logo size Introduced a specific height for the navbar logo across the application to ensure consistency in the navbar's visual presentation. By adjusting the CSS to set a fixed height and applying the corresponding class to the logo in the header, the layout becomes more predictable and harmonious, significantly improving the user interface's appearance. --- static/css/style.css | 4 ++++ templates/header.html | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/static/css/style.css b/static/css/style.css index d9794d5..14bf807 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -205,3 +205,7 @@ header { word-wrap: break-word; overflow-wrap: break-word; } + +.navbar-logo { + height: 64px; +} \ No newline at end of file diff --git a/templates/header.html b/templates/header.html index 6ff83c6..7f2e5d4 100644 --- a/templates/header.html +++ b/templates/header.html @@ -1,7 +1,7 @@