VencordThemes/Snippets/SlidingThreads.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

9 lines
351 B
CSS

/* Credit to LuSaffi (797721161504653332) on the Vencord discord for this snippet */
#channels [class^=container_]:not([class*=containerWithMargin])
{ max-height: 0;
overflow: hidden;
transition: max-height 4s ease; }
#channels [class^=containerDefault_]:hover + [class^=container_],
#channels [class^=container_]:hover
{ max-height: 100%; }