From e688c55cd9e4462ea2dc44466041edb175021b97 Mon Sep 17 00:00:00 2001 From: Craig Oates Date: Sat, 8 Oct 2022 12:03:06 +0100 Subject: [PATCH] adding padding to alert message container in main.css. The alert message was rendering under the dismiss button when viewed on a small (phone) screen. The extra padding makes sure the message remains clear of the button. --- static/css/main.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/css/main.css b/static/css/main.css index 22877da..c1d1bbf 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -61,7 +61,7 @@ input[type=password] { } .be-alert-container p { - padding: 0px; + padding: 0px 60px 0px 0px; margin: 0px; border-radius: 8px; display: flex;