We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe95080 commit 2e89ef4Copy full SHA for 2e89ef4
src/styles/sidebar.scss
@@ -170,8 +170,27 @@
170
.nest-menu .el-submenu>.el-submenu__title,
171
.el-menu-item {
172
&:hover {
173
- // You can use $subMenuHover
+ // you can use $subMenuHover
174
background-color: $menuHover !important;
175
}
176
177
+
178
+ // the scroll bar appears when the subMenu is too long
179
+ >.el-menu--popup {
180
+ max-height: 100vh;
181
+ overflow-y: auto;
182
183
+ &::-webkit-scrollbar-track-piece {
184
+ background: #d3dce6;
185
+ }
186
187
+ &::-webkit-scrollbar {
188
+ width: 6px;
189
190
191
+ &::-webkit-scrollbar-thumb {
192
+ background: #99a9bf;
193
+ border-radius: 20px;
194
195
196
0 commit comments