From 2bb8e0b231e2aa44fa0fbd6fdb531b27b6cb0918 Mon Sep 17 00:00:00 2001 From: Julien Constant Date: Sun, 12 Mar 2023 14:06:18 +0100 Subject: [PATCH] fix weird margin on small devices for alert boxes --- core/static/core/style.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/core/static/core/style.scss b/core/static/core/style.scss index 0794f1e6..54a0db68 100644 --- a/core/static/core/style.scss +++ b/core/static/core/style.scss @@ -353,6 +353,12 @@ header { flex-wrap: wrap; width: 90%; margin: 1em auto; + + @media (max-width: 500px) { + margin: 0; + width: 100%; + } + #alert_box, #info_box { flex: 49%;