diff --git a/src/AdminUI/AdminPortalMudTheme.cs b/src/AdminUI/AdminPortalMudTheme.cs index 45b2ad772..ffc66328e 100644 --- a/src/AdminUI/AdminPortalMudTheme.cs +++ b/src/AdminUI/AdminPortalMudTheme.cs @@ -21,7 +21,7 @@ static AdminPortalMudTheme() Black = "#27272f", Background = "#181818", BackgroundGrey = "#27272f", - Surface = "#373740", + Surface = "#333333", DrawerBackground = "#333333", DrawerText = "#ffffffff", DrawerIcon = "rgba(255,255,255, 0.50)", diff --git a/src/AdminUI/Helpers/DateTimeFormatter.cs b/src/AdminUI/Helpers/DateTimeFormatter.cs index 99e23b58d..393d9abc4 100644 --- a/src/AdminUI/Helpers/DateTimeFormatter.cs +++ b/src/AdminUI/Helpers/DateTimeFormatter.cs @@ -5,6 +5,6 @@ public static class DateTimeFormatter public static string FormatLongDate(DateTime? date) => date.HasValue // Format based on https://www.ssw.com.au/rules/weekdays-on-date-selectors/ - ? $"{date.Value:ddd}, {date.Value:d} {date.Value:t}" + ? $"{date.Value:ddd} {date.Value:d} {date.Value:t}" : "-"; } \ No newline at end of file diff --git a/src/AdminUI/Pages/SendNotification.razor b/src/AdminUI/Pages/SendNotification.razor index 205d176dd..0e9da76b6 100644 --- a/src/AdminUI/Pages/SendNotification.razor +++ b/src/AdminUI/Pages/SendNotification.razor @@ -1,4 +1,4 @@ -@page "/send-notification" +@page "/send-notification" @using Microsoft.AspNetCore.Authorization @using MudBlazor @@ -16,7 +16,7 @@