From 2eee309102499eeacfca9783cc7e90db6c2800c0 Mon Sep 17 00:00:00 2001 From: Daniel Muyshond Date: Thu, 28 Mar 2024 11:43:57 +0100 Subject: [PATCH] Hide banner (mobile) as asked by OLLN See SUP-36192 --- static/olln/_custom.scss | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/static/olln/_custom.scss b/static/olln/_custom.scss index 880fb409..4ed2edb8 100644 --- a/static/olln/_custom.scss +++ b/static/olln/_custom.scss @@ -14,12 +14,16 @@ div.link-cell.has-asset-picture a:not(.asset-link) { } @media screen and (max-width: $nav-mobile-limit) { - nav.site-nav { - margin-top: 100px; - } - #header h1 { top: 10px; left: 47px; } + + nav.site-nav { + margin-top: 100px; + } + + body.has-picture .site-nav::after { + display: none; + } }