From 7648d93a0737fb3c9e29e11d552c6d7d1de0450a Mon Sep 17 00:00:00 2001 From: Ruslan Date: Tue, 12 May 2026 16:48:28 +0300 Subject: [PATCH] fix: brand logo stays fixed at top on mobile --- static/css/index.css | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/static/css/index.css b/static/css/index.css index f0001e1..78e15b3 100644 --- a/static/css/index.css +++ b/static/css/index.css @@ -503,10 +503,16 @@ margin: 10px auto 18px; } .brand-strip { - margin-bottom: 8px; + position: fixed; + top: 10px; + left: 10px; + z-index: 200; } .brand-logo { - width: clamp(132px, 42vw, 190px); + width: clamp(110px, 36vw, 170px); + } + .wrap { + padding-top: 60px; } .hero { padding: 16px 14px 20px;