Created
March 27, 2025 05:30
-
-
Save wxupjack/3eeed74822d3f5bc90f5aed1314cfc4b to your computer and use it in GitHub Desktop.
[clash-verge-rev] A short CSS injection for animation sidebar menu
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
/*make buttons compact and add tilt hover animation for MuiListItemButton*/ | |
.css-1pqmd8p { | |
height: 2.5rem; | |
transition: all 0.6s ease-out !important; | |
} | |
.css-1pqmd8p:hover { | |
transform: rotate(5deg) scale(1.25); | |
transition: all 0.1s ease !important; | |
} | |
/* hide the scrollbar of `MuiList-root` when button enlarge*/ | |
.css-1wduhak { | |
overflow: hidden; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment