-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,31 @@ | ||
<div class="flex flex-col gap-6"> | ||
<!-- Neutral --> | ||
<div role="alert" class="alert bg-neutral"> | ||
<i class="fa-solid fa-circle-minus text-xl text-neutral-content"></i> | ||
<div role="alert" class="alert bg-neutral text-neutral-content"> | ||
<i class="fa-solid fa-circle-minus text-xl"></i> | ||
<span>We use cookies for no reason</span> | ||
</div> | ||
|
||
<!-- Success --> | ||
<div role="alert" class="alert alert-success"> | ||
<i class="fa-solid fa-circle-check text-xl text-success-content"></i> | ||
<div role="alert" class="alert alert-success text-success-content"> | ||
<i class="fa-solid fa-circle-check text-xl"></i> | ||
<span>We use cookies for no reason</span> | ||
</div> | ||
|
||
<!-- Info --> | ||
<div role="alert" class="alert alert-info"> | ||
<i class="fa-solid fa-circle-info text-xl text-info-content"></i> | ||
<div role="alert" class="alert alert-info text-info-content"> | ||
<i class="fa-solid fa-circle-info text-xl"></i> | ||
<span>We use cookies for no reason</span> | ||
</div> | ||
|
||
<!-- Warning --> | ||
<div role="alert" class="alert alert-warning"> | ||
<i class="fa-solid fa-triangle-exclamation text-xl text-warning-content"></i> | ||
<div role="alert" class="alert alert-warning text-warning-content"> | ||
<i class="fa-solid fa-triangle-exclamation text-xl"></i> | ||
<span>We use cookies for no reason</span> | ||
</div> | ||
|
||
<!-- Error --> | ||
<div role="alert" class="alert alert-error"> | ||
<i class="fa-solid fa-bolt text-xl text-error-content"></i> | ||
<div role="alert" class="alert alert-error text-error-content"> | ||
<i class="fa-solid fa-bolt text-xl"></i> | ||
<span>We use cookies for no reason</span> | ||
</div> | ||
</div> |