Made alerts more visible

This commit is contained in:
Pinga 2023-08-30 17:38:24 +03:00
parent 9614064ecb
commit eaac8131cd

View file

@ -1,5 +1,5 @@
{% if flash.getMessage('info') %}
<div class="alert alert-info alert-dismissible mt-4" role="alert">
<div class="alert alert-important alert-info alert-dismissible mt-4" role="alert">
<div class="d-flex">
<div>
<svg xmlns="http://www.w3.org/2000/svg" class="icon alert-icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0" /><path d="M12 8l.01 0" /><path d="M11 12l1 0l0 4l1 0" /></svg>
@ -13,7 +13,7 @@
{% endif %}
{% if flash.getMessage('error') %}
<div class="alert alert-danger alert-dismissible mt-4" role="alert">
<div class="alert alert-important alert-danger alert-dismissible mt-4" role="alert">
<div class="d-flex">
<div>
<svg xmlns="http://www.w3.org/2000/svg" class="icon alert-icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M12 12m-9 0a9 9 0 1 0 18 0a9 9 0 1 0 -18 0" /><path d="M12 8l0 4" /><path d="M12 16l.01 0" /></svg>
@ -27,7 +27,7 @@
{% endif %}
{% if flash.getMessage('success') %}
<div class="alert alert-success alert-dismissible mt-4" role="alert">
<div class="alert alert-important alert-success alert-dismissible mt-4" role="alert">
<div class="d-flex">
<div>
<svg xmlns="http://www.w3.org/2000/svg" class="icon alert-icon" width="24" height="24" viewBox="0 0 24 24" stroke-width="2" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"><path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M5 12l5 5l10 -10" /></svg>
@ -38,4 +38,4 @@
</div>
<a class="btn-close" data-bs-dismiss="alert" aria-label="close"></a>
</div>
{% endif %}
{% endif %}