From fe86eb2b282ba089f13c5075c00d1322f7ceec05 Mon Sep 17 00:00:00 2001 From: codevictory Date: Sun, 16 May 2021 20:58:29 +0300 Subject: [PATCH] Alert styling fixes. --- assets/css/app.scss | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/assets/css/app.scss b/assets/css/app.scss index cd97715..97a672b 100644 --- a/assets/css/app.scss +++ b/assets/css/app.scss @@ -8,10 +8,12 @@ @import './pages/privacy.scss'; /* Alerts and form errors */ .alert { + display: flex; + justify-content: center; padding: 15px; - margin-bottom: 20px; border: 1px solid transparent; border-radius: 4px; + margin-bottom: 20px; } .alert-info { color: #31708f; @@ -29,7 +31,8 @@ border-color: #ebccd1; } .alert p { - margin-bottom: 0; + text-align: center; + margin: 0px; } .alert:empty { display: none;