Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implemented Toast notifications #418

Merged
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;
}
}
}
Loading