VencordThemes/Snippets/DirectMessagesIconGrid.css
SeaswimmerTheFsh 1b779edb94
Some checks failed
Lint CSS / Lint CSS (push) Failing after 9s
added a bunch of snippets
2024-05-21 17:44:07 -04:00

46 lines
853 B
CSS

/* Credit to vending_machine (343383572805058560) on the Vencord discord for this snippet */
[class^=privateChannels_] [class^=content_] {
display: grid;
height: unset !important;
grid-template-columns: 1fr 1fr;
&> * {
overflow: hidden;
grid-column: 1 / 3;
}
}
[class^=channel_]:has(
[href="/channels/@me"],
[href="/library"],
[href="/shop"],
[href="/store"],
[href="/family-center"],
[href="/message-requests"]
) {
grid-column: auto;
[class*="link_"] {
gap: 0;
justify-content: center;
position: relative;
&> :not([class*="avatarWithText_"]) {
position: absolute;
left: 5.5em;
}
}
[class*="avatar_"] {
margin: 0;
width: unset;
}
[class*="avatarWithText_"] {
flex-grow: unset;
}
[class*="content_"] {
display: none;
}
}