feat: streamlined alerts

This commit is contained in:
Björn Fromme
2026-03-15 12:42:28 +01:00
parent 518bc7339f
commit 6dfd8fd3ef
4 changed files with 23 additions and 17 deletions
+10
View File
@@ -0,0 +1,10 @@
{% set type = type|default('info') %}
<div class="{{ html_classes('p-4 mb-4 flex items-start space-x-2 text-gray-100 rounded-md', { 'bg-blue-600': type == 'info', 'bg-red-600': type == 'warning' }) }}">
{{ icon('alert', 'w-5 h-5 flex-shrink-0') }}
<div class="leading-relaxed text-base">
{% block message %}
{{ message | nl2br }}
{% endblock %}
</div>
</div>