From 12dfb1f87380c00f357db40246945d6107a069c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20P=C3=A9ters?= Date: Sat, 20 Oct 2018 13:33:31 +0200 Subject: [PATCH] scss: fix position of geoloc error message on mobile (#15369) --- static/includes/_wcs.scss | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/static/includes/_wcs.scss b/static/includes/_wcs.scss index 6a60525c..0603c836 100644 --- a/static/includes/_wcs.scss +++ b/static/includes/_wcs.scss @@ -500,6 +500,15 @@ span.geoloc-error { font-weight: normal; font-size: smaller; float: right; + @media screen and (max-width: $mobile-limit) { + padding-left: 0; + float: none; + display: block; + z-index: 100; + background: red; + color: white; + text-align: center; + } } .fileprogress { -- 2.19.1