diff --git a/FoodsharingSiegen.Server/App.razor b/FoodsharingSiegen.Server/App.razor index a033593..9eb3899 100644 --- a/FoodsharingSiegen.Server/App.razor +++ b/FoodsharingSiegen.Server/App.razor @@ -1,15 +1,29 @@ - - - - - - - - Not found - - Sorry, there's nothing at this address. - - - + + + + + + + + + Not found + + Sorry, there's nothing at this address. + + + + - \ No newline at end of file + + +@code{ + private Theme theme = new() + { + ColorOptions = new ThemeColorOptions + { + Primary = "#64ae24", + Secondary = "#533a20", + }, + + }; +} \ No newline at end of file diff --git a/FoodsharingSiegen.Server/FoodsharingSiegen.Server.csproj b/FoodsharingSiegen.Server/FoodsharingSiegen.Server.csproj index 915aff6..0da685b 100644 --- a/FoodsharingSiegen.Server/FoodsharingSiegen.Server.csproj +++ b/FoodsharingSiegen.Server/FoodsharingSiegen.Server.csproj @@ -11,9 +11,9 @@ - - - + + + all diff --git a/FoodsharingSiegen.Server/Program.cs b/FoodsharingSiegen.Server/Program.cs index 83e5ae5..8e2b135 100644 --- a/FoodsharingSiegen.Server/Program.cs +++ b/FoodsharingSiegen.Server/Program.cs @@ -26,7 +26,7 @@ builder.Services.AddScoped(); builder.Services.AddScoped(); builder.Services.AddScoped(); -builder.Services.AddBlazorise(options => { options.ChangeTextOnKeyPress = true; }).AddMaterialProviders().AddMaterialIcons(); +builder.Services.AddBlazorise( options => { options.Immediate = true; }).AddMaterialProviders().AddMaterialIcons(); var app = builder.Build();
Sorry, there's nothing at this address.