From 43129717bf61deb5a3e15587b87cb664acdf801c Mon Sep 17 00:00:00 2001 From: Arlind Ukshini Date: Fri, 24 Apr 2026 10:39:51 +0200 Subject: [PATCH] mobile: enlarge masthead logo and drop the anchor underline MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit .m-logo img 22px → 34px; .m-logo gets text-decoration:none so the wrapping doesn't paint a default underline under the wordmark on Safari / any browser with link styles leaking through. Co-Authored-By: Claude Opus 4.7 (1M context) --- protected/mobile/mobile.css | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/protected/mobile/mobile.css b/protected/mobile/mobile.css index e4b94bc..0dcd7bf 100644 --- a/protected/mobile/mobile.css +++ b/protected/mobile/mobile.css @@ -53,8 +53,12 @@ html, body { background: var(--paper); border-bottom: 1px solid var(--line-soft); } -.m-logo { display: inline-block; line-height: 0; } -.m-logo img { height: 22px; width: auto; display: block; } +.m-logo { + display: inline-block; + line-height: 0; + text-decoration: none; +} +.m-logo img { height: 34px; width: auto; display: block; } /* ─── Main layout ────────────────────────────────────────── */ .m-main {