10 lines
351 B
CSS
10 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%; }
|