From 0f9f8b21a49b3ceef623c83b6936ec736e9649e4 Mon Sep 17 00:00:00 2001 From: Kumi Date: Wed, 22 May 2024 18:01:09 +0200 Subject: [PATCH] refactor(header): streamline navigation and improve form aesthetics Redesigned the header's navigation layout and search form to enhance user interface consistency and accessibility. Migrated the logo loading to utilize Flask's url_for, ensuring dynamic path resolution which is more maintainable and compatible across different deployment environments. Simplified the navbar structure by consolidating elements under a single navbar-collapse class, aligning with Bootstrap's best practices for responsive design. Upgraded the search button to be more visually appealing and accessible by replacing visibility styles with an outline class, promoting a clearer call-to-action for users to engage with the search functionality. --- templates/header.html | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/templates/header.html b/templates/header.html index 8621f27..82b2f2e 100644 --- a/templates/header.html +++ b/templates/header.html @@ -1,11 +1,15 @@