Skip to content

Commit

Permalink
Fix guild tag sort order and z layer
Browse files Browse the repository at this point in the history
  • Loading branch information
Bitslayn committed Aug 27, 2024
1 parent d61f774 commit 62d62b4
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 18 deletions.
33 changes: 20 additions & 13 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.

14 changes: 10 additions & 4 deletions themes/btw.bitslayn.revertProfiles/src/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,16 @@
color: var(--interactive-active);
}
}
[class^="body_"] > [class^="container_"] {
z-index: 1;
margin: 0 16px;
padding: 0 16px;
[class^="body_"] {
> [class^="container_"],
> [class^="clickable_"] {
z-index: 1;
margin: 0 16px;
padding: 0 16px;
}
> [class^="clickable_"] {
padding-top: 12px;
}
}
[class^="visibleContainer"] {
margin: 0 16px;
Expand Down
15 changes: 14 additions & 1 deletion themes/btw.bitslayn.revertProfiles/src/sort.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// Sort order
[class*="biteSizeOuter"] {
[class^="biteSizeOuter"] {
// Badges

// Username container
Expand Down Expand Up @@ -52,3 +52,16 @@
order: 1;
}
}

[class^="fullSizeOuter"] {
// Badges

// Username container

// Guild tag
[class^="body_"] > [class^="clickable_"] {
order: -2;
}

// Status
}

0 comments on commit 62d62b4

Please sign in to comment.