From 5b3bd43e4f0d55bd36781b7b36bb1347f18b2999 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Beno=C3=AEt=20Harrault?= <benoit@harrault.fr>
Date: Mon, 4 Oct 2021 14:20:08 +0200
Subject: [PATCH] Improve display of playlist created, add top margin

---
 template.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/template.php b/template.php
index ed65375..2b4a77e 100644
--- a/template.php
+++ b/template.php
@@ -43,13 +43,13 @@
 
     <?php if (count($templateData['errors'])) { ?>
       <?php foreach ($templateData['errors'] as $message) { ?>
-        <div class="alert alert-warning" role="alert"><?php echo $message; ?></div>
+        <div class="alert alert-warning mt-2" role="alert"><?php echo $message; ?></div>
       <?php } ?>
     <?php } ?>
 
     <?php if (count($templateData['infos'])) { ?>
       <?php foreach ($templateData['infos'] as $message) { ?>
-        <div class="alert alert-primary" role="alert"><?php echo $message; ?></div>
+        <div class="alert alert-primary mt-2" role="alert"><?php echo $message; ?></div>
       <?php } ?>
     <?php } ?>
 
-- 
GitLab