Skip to content

Commit

Permalink
feat(v2): style sidebar on overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
endiliey committed Nov 23, 2019
1 parent 2d15fad commit 4948060
Showing 1 changed file with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 4948060

Please sign in to comment.