From a418960349b81b3faa01c20f91c85a33bee2766e Mon Sep 17 00:00:00 2001 From: JGZYES Date: Wed, 2 Sep 2026 19:55:05 +0800 Subject: [PATCH] web: nav logo keep 115x77 aspect ratio (no square crop) --- web/assets/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/web/assets/style.css b/web/assets/style.css index efb4ad4..0f65c76 100644 --- a/web/assets/style.css +++ b/web/assets/style.css @@ -174,6 +174,6 @@ code{font-family:"JetBrains Mono",ui-monospace,SFMono-Regular,Menlo,Consolas,"Co .svc-ok{color:#fff;font-weight:700} .svc-bad{color:#9a9a9a} -/* nav logo image */ +/* nav logo image (icon.png is 115x77 — keep its aspect ratio) */ .brand{display:flex;align-items:center;gap:10px} -.brand-img{width:30px;height:30px;border-radius:7px;object-fit:cover;border:1px solid var(--line)} +.brand-img{height:30px;width:auto;border-radius:6px;border:1px solid var(--line)}