Created
May 15, 2016 17:16
-
-
Save Shou/8394ed10adf25ce47eb0e3aa66061ea4 to your computer and use it in GitHub Desktop.
Collapse Discord channels bar, show on hover of guild bar
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.channels-wrap | |
{ max-width: 0px | |
; overflow: hidden | |
; transition: max-width 0s ease-in-out | |
} | |
.channels-wrap:hover, | |
.channels-wrap:focus | |
{ max-width: 50rem | |
; transition: max-width 0.3s ease-in-out | |
} | |
.guilds-wrapper:hover ~ .channels-wrap, | |
.guilds-wrapper:focus ~ .channels-wrap | |
{ max-width: 50rem | |
; transition: max-width 0.3s ease-in-out | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment