Skip to content

Commit

Permalink
Implemented Toast notifications (#418)
Browse files Browse the repository at this point in the history
Co-authored-by: Badger <jonBraunsma@gmail.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
3 people authored Mar 19, 2024
1 parent f49ccfc commit d023ffa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/TagzApp.Blazor.Client/Components/ToastProvider.razor
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
@implements IDisposable
@rendermode InteractiveAuto

<div class="toast-container position-fixed top-0 end-0 p-3">
<div class="toast-container position-fixed top-0 end-0 p-3" style="z-index: 999;">
@foreach (var message in ToastService.Messages)
{
<Toast Message="@message"/>
Expand All @@ -28,4 +28,4 @@
{
ToastService.OnUpdate -= StateHasChanged;
}
}
}

0 comments on commit d023ffa

Please sign in to comment.