Skip to content

Commit

Permalink
increase z-index of alerts
Browse files Browse the repository at this point in the history
  • Loading branch information
codymullins committed Nov 15, 2024
1 parent 9c84550 commit f88c7f2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@inject AlertService Service
@inject ILogger<PureAlertProvider> Log

<div class="fixed bottom-0 left-0 p-4 z-20">
<div class="fixed bottom-0 left-0 p-4 z-50">
@foreach (var msg in Service.Messages)
{
<PureAlert Alert="msg" OnDismiss="DismissAsync" Accent="msg.State" Styles="@(msg.IsRemoving ? "opacity-0 transition-opacity ease-in duration-700" : "transition-opacity opacity-100 ease-in duration-700")">@msg.Message</PureAlert>
Expand Down

0 comments on commit f88c7f2

Please sign in to comment.