From 762b3c4922864169af2559fc52c1685f9910df46 Mon Sep 17 00:00:00 2001 From: grufoony Date: Fri, 20 Mar 2026 10:09:13 +0100 Subject: [PATCH] Fix logo visualization on mobile devices --- _styles/header.scss | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/_styles/header.scss b/_styles/header.scss index 7664a2c..f8b0bbd 100644 --- a/_styles/header.scss +++ b/_styles/header.scss @@ -184,4 +184,18 @@ header[data-big] { .subtitle { font-size: var(--large); } + + @media (max-width: $collapse) { + padding: 60px 20px; + + .logo { + height: auto; + width: min(100%, 240px); + } + + .logo > * { + width: 100%; + height: auto; + } + } } \ No newline at end of file