fix: add margin below messagebox

This commit is contained in:
Björn Fromme
2024-04-19 12:32:56 +02:00
parent 3294abd99e
commit a40d9d4548
+1 -1
View File
@@ -1,4 +1,4 @@
<div class="{{ html_classes('flex items-start space-x-4 text-white p-4 rounded-md w-full', { 'bg-primary': type != 'error', 'bg-red-500': type == 'error' }) }}">
<div class="{{ html_classes('flex items-start space-x-4 text-white p-4 rounded-md w-full mb-8', { 'bg-primary': type != 'error', 'bg-red-500': type == 'error' }) }}">
{{ icon(type == 'error' ? 'alert' : 'info', 'w-6 h-6 shrink-0') }}
<span>{{ message }}</span>
</div>