Skip to content

Latest commit

 

History

History
44 lines (34 loc) · 831 Bytes

Improved Members List.md

File metadata and controls

44 lines (34 loc) · 831 Bytes

Improved Members List

Minimizes the members list to just the members' avatars until you hover over them.

Installation

To install this snippet, simply add the following code to your CSS file.

/*Small Member list*/
.container_cbd271 {
  transition: 0.3s ease-in-out;
  margin-right: -180px;
}
.container_cbd271 .membersGroup_cbd271 {
  transition: 0.3s ease-in-out;
  height: 0px!important;
  margin-top: -25px;
}
.container_cbd271:hover .membersGroup_cbd271 {
  height: unset!important;
  margin-top: unset!important;
}
.container_cbd271:hover{
  margin-right: unset!important;
}

Preview

image

Credit

@riddim_glitch

Changelog

1.0.0

  • Initial release

1.0.1 Class Fix

  • Updated the classes to match Discord's new ones.