From 66c378c17d195b4066049c8593a0d87b603ac259 Mon Sep 17 00:00:00 2001 From: MarekWo Date: Wed, 22 Apr 2026 20:00:18 +0200 Subject: [PATCH] fix: shrink navbar brand to 1rem on mobile so full 'mc-webui' fits At 1.25rem the brand was still ~120px wide and got truncated to 'mc-we...' on a 360px-wide S20. Drop to 1rem so the whole name fits without ellipsis while the navbar stays on one row. Co-Authored-By: Claude Opus 4.7 --- app/static/css/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/static/css/style.css b/app/static/css/style.css index be874c1..ec45288 100644 --- a/app/static/css/style.css +++ b/app/static/css/style.css @@ -565,7 +565,7 @@ main { /* Navbar: Shrink brand title and let it truncate if needed */ .navbar-brand.h1 { - font-size: 1.25rem; + font-size: 1rem; min-width: 0; overflow: hidden; text-overflow: ellipsis;