Skip to content

Commit

Permalink
fix(v2): make scrollbar styles consistent (facebook#3669)
Browse files Browse the repository at this point in the history
  • Loading branch information
nategiraudeau committed Nov 2, 2020
1 parent 736807f commit 398af74
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 @@
top: calc(var(--ifm-navbar-height) + 2rem);
}

.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;
}

.sidebarItemTitle {
margin-bottom: 0.5rem;
}
Expand Down

0 comments on commit 398af74

Please sign in to comment.