From 169a3b0c979931a13c311573d6df3689206795f8 Mon Sep 17 00:00:00 2001
From: Camille Simiand <camille.simiand@tetras-libre.fr>
Date: Wed, 9 Mar 2022 14:00:44 +0100
Subject: [PATCH] Fix flashMessages margins

---
 templates/user/profile.html.twig | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/templates/user/profile.html.twig b/templates/user/profile.html.twig
index 5747fed..d6e8080 100644
--- a/templates/user/profile.html.twig
+++ b/templates/user/profile.html.twig
@@ -14,13 +14,13 @@
     </div>
 
     {% for flashSuccess in app.flashes('success') %}
-        <div class="text-center alert alert-success col-11 col-md-10 col-lg-9 col-xl-8 mx-auto my-5" role="alert">
+        <div class="text-center alert alert-success col-11 col-md-10 col-lg-9 col-xl-8 mx-auto mt-0 mb-4" role="alert">
             {{ flashSuccess }}
         </div>
     {% endfor %}
 
     {% for flashWarning in app.flashes('warning') %}
-        <div class="text-center alert alert-warning col-11 col-md-10 col-lg-9 col-xl-8 mx-auto my-5" role="alert">
+        <div class="text-center alert alert-warning col-11 col-md-10 col-lg-9 col-xl-8 mx-auto mt-0 mb-4" role="alert">
             {{ flashWarning }}
         </div>
     {% endfor %}
-- 
GitLab