diff --git a/Src/NationsConverterWeb/NationsConverterWeb/Components/Pages/Dashboard.razor b/Src/NationsConverterWeb/NationsConverterWeb/Components/Pages/Dashboard.razor index 4c5ec8de..69724396 100644 --- a/Src/NationsConverterWeb/NationsConverterWeb/Components/Pages/Dashboard.razor +++ b/Src/NationsConverterWeb/NationsConverterWeb/Components/Pages/Dashboard.razor @@ -81,9 +81,9 @@ discordUsers = await Db.DiscordUsers .Include(x => x.User) - .OrderBy(x => x.User.IsAdmin) - .ThenBy(x => x.User.IsDeveloper) - .ThenBy(x => x.User.IsModeler) + .OrderByDescending(x => x.User.IsAdmin) + .ThenByDescending(x => x.User.IsDeveloper) + .ThenByDescending(x => x.User.IsModeler) .ThenBy(x => x.GlobalName) .ThenBy(x => x.Username) .ToArrayAsync(); diff --git a/Src/NationsConverterWeb/NationsConverterWeb/Components/Pages/Dashboard.razor.css b/Src/NationsConverterWeb/NationsConverterWeb/Components/Pages/Dashboard.razor.css index 79e8dd7a..2a06a897 100644 --- a/Src/NationsConverterWeb/NationsConverterWeb/Components/Pages/Dashboard.razor.css +++ b/Src/NationsConverterWeb/NationsConverterWeb/Components/Pages/Dashboard.razor.css @@ -13,7 +13,6 @@ .categories { display: flex; justify-content: center; - justify-content: center; gap: 5px; border-bottom: 2px solid #333; padding: 10px; @@ -27,6 +26,7 @@ display: flex; align-items: center; gap: 8px; + margin-bottom: 5px; } .members div img {