mirror of
https://github.com/facebook/docusaurus.git
synced 2025-12-30 14:14:17 +00:00
feat(v2): style sidebar on overflow (#2034)
This commit is contained in:
parent
2d15fadf16
commit
670fd4e182
|
|
@ -13,6 +13,24 @@
|
|||
position: sticky;
|
||||
top: var(--ifm-navbar-height);
|
||||
}
|
||||
|
||||
.sidebar::-webkit-scrollbar {
|
||||
width: 7px;
|
||||
}
|
||||
|
||||
.sidebar::-webkit-scrollbar-track {
|
||||
background: #f1f1f1;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.sidebar::-webkit-scrollbar-thumb {
|
||||
background: #888;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.sidebar::-webkit-scrollbar-thumb:hover {
|
||||
background: #555;
|
||||
}
|
||||
}
|
||||
|
||||
.sidebarMenuIcon {
|
||||
|
|
|
|||
Loading…
Reference in New Issue