We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84fe869 commit a19d20bCopy full SHA for a19d20b
Program.cs
@@ -2,6 +2,7 @@
2
using GithubStarSearch;
3
using GithubStarSearch.Components;
4
using GithubStarSearch.Searching;
5
+using MudBlazor;
6
using MudBlazor.Services;
7
using Octokit;
8
using Serilog;
@@ -15,7 +16,10 @@
15
16
outputTemplate: "[{Timestamp:HH:mm:ss} {Level:u3}] {SourceContext} {Message:lj}{NewLine}{Exception}"));
17
18
// Add MudBlazor services
-builder.Services.AddMudServices();
19
+builder.Services.AddMudServices(config =>
20
+{
21
+ config.SnackbarConfiguration.PositionClass = Defaults.Classes.Position.TopLeft;
22
+});
23
24
// Add services to the container.
25
builder.Services.AddRazorComponents()
0 commit comments