Skip to content

Commit

Permalink
Fix BetterActivities and ShowConnections sorting
Browse files Browse the repository at this point in the history
  • Loading branch information
Bitslayn committed Aug 2, 2024
1 parent a5a8bf4 commit 0d3285d
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 16 deletions.
20 changes: 12 additions & 8 deletions themes/btw.bitslayn.revertProfiles/raw/main.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 13 additions & 8 deletions themes/btw.bitslayn.revertProfiles/src/profiles/popout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -35,34 +35,39 @@

// Sort order
> [class^="body"] {
// Username container
> [class^="container"] {
order: -8;
}
// Guild tag
> [class^="clickable"] {
order: -1;
order: -7;
}
// Bot buttons
> [class^="buttons"] {
order: 1;
order: -6;
}
// About me
> div:not([class], [style]) {
order: 2;
order: -5;
}
// Mutuals
> [class^="mutuals"] {
order: 3;
order: -4;
}
// Activities
> [class^="activityBiteSizePopout"] {
order: 4;
> [class^="activityBiteSizePopout"],
> div:has([class^="activityBiteSizePopout"]) {
order: -3;
}
// Try my commands & roles
> div[style="position: relative;"],
section {
order: 5;
order: -2;
}
// My profile buttons
> [class^="menus"] {
order: 6;
order: -1;
}
}

Expand Down

0 comments on commit 0d3285d

Please sign in to comment.