From c792fa17e8ca75dcd2767c5d81c159562c25c7ee Mon Sep 17 00:00:00 2001 From: admin Date: Sun, 14 Jun 2026 20:54:19 +0000 Subject: [PATCH] Fix .logo-container: remove flex, limit to 75px --- misc/header.html | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/misc/header.html b/misc/header.html index a198f05..d622d9f 100644 --- a/misc/header.html +++ b/misc/header.html @@ -41,13 +41,16 @@ .header-title::after {{ bottom: 0.4em; }} .logo-container {{ - flex-shrink: 0; + display: inline-block; + max-width: 75px; + max-height: 75px; margin-left: 20px; }} .logo {{ - height: 20px; - width: auto; + max-width: 100%; + max-height: 100%; + height: auto; display: block; }}