Skip to content

Instantly share code, notes, and snippets.

@80ROkWOC4j
Last active December 9, 2023 07:06
Show Gist options
  • Save 80ROkWOC4j/5aed70afb010244a82e38486c42fcfd2 to your computer and use it in GitHub Desktop.
Save 80ROkWOC4j/5aed70afb010244a82e38486c42fcfd2 to your computer and use it in GitHub Desktop.
Hide both sidebars until hover in BetterDiscord

Looks

looks

Step

  1. Install BetterDiscord then go to Custom CSS

  2. Copy&Paste those

:root {
    --transition-time: .3s;
}

/* member right side bar */
.container_b2ce9c {
    transition-duration: var(--transition-time);
    justify-content: unset;
    min-width: unset;
    width: 60px
}

.membersGroup__85843 {
    transition-duration: var(--transition-time);
    height: 0px;
}

.container_b2ce9c:hover .membersGroup__85843 {
    height: 40px
}

.container_b2ce9c:hover {
    width: 240px
}

/* server left side bar */
.guilds__2b93a {
    transition-duration: var(--transition-time);
    width: 10px;
}

.guilds__2b93a:hover {
    transition-duration: var(--transition-time);
    width: 70px;
}

/* channel left side bar */
.sidebar_ded4b5 {
    transition-duration: var(--transition-time);
    width: 180px;
}
.sidebar_ded4b5:hover {
    transition-duration: var(--transition-time);
    width: 250px;
}

Suggest plugins

Change logs

23.12.08 Now works with the latest update

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment