Skip to content

Commit

Permalink
Fix order and spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
BigBang1112 committed Aug 25, 2024
1 parent 5d97d7c commit 44f4b2e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
.categories {
display: flex;
justify-content: center;
justify-content: center;
gap: 5px;
border-bottom: 2px solid #333;
padding: 10px;
Expand All @@ -27,6 +26,7 @@
display: flex;
align-items: center;
gap: 8px;
margin-bottom: 5px;
}

.members div img {
Expand Down

0 comments on commit 44f4b2e

Please sign in to comment.