From 3d90e51ecf0936e88d80db8472c15b53c2d4d248 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Wed, 23 Feb 2022 21:59:51 +0100 Subject: [PATCH] reduce carrousel top "padding" on mobile (hiding the div that was dedicated to tags) --- panikweb_studioneau/static/css/style.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/panikweb_studioneau/static/css/style.scss b/panikweb_studioneau/static/css/style.scss index f54708b..baf27c1 100644 --- a/panikweb_studioneau/static/css/style.scss +++ b/panikweb_studioneau/static/css/style.scss @@ -283,6 +283,11 @@ p { padding: 10px 20px; background: white; height: 100px; + @media screen and (max-width: 600px) { + .tags-will-be-here { + display: none; + } + } .title { display: block; width: 100%; -- 2.39.2