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.
This commit is contained in:
Kumi 2024-03-28 14:12:20 +01:00
parent 5e99720328
commit 5a6d6d403c
Signed by: kumi
GPG key ID: ECBCC9082395383F
2 changed files with 5 additions and 1 deletions

View file

@ -205,3 +205,7 @@ header {
word-wrap: break-word;
overflow-wrap: break-word;
}
.navbar-logo {
height: 64px;
}

View file

@ -1,7 +1,7 @@
<header>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="/">
<img src="/static/img/logo.png" alt="Structables" />
<img class="navbar-logo" src="/static/img/logo.png" alt="Structables" />
</a>
<div class="container-fluid">
<div class="navbar-nav-scroll">