Skip to content

Commit

Permalink
Add styling to scrollbar
Browse files Browse the repository at this point in the history
  • Loading branch information
qu1ck committed Aug 24, 2018
1 parent 2daf701 commit 0012cf1
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions InteractiveHtmlBom/ibom.css
Original file line number Diff line number Diff line change
Expand Up @@ -381,3 +381,20 @@ mark.highlight {
#dbg {
display: block;
}

::-webkit-scrollbar {
width: 8px;
}

::-webkit-scrollbar-track {
background: #aaa;
}

::-webkit-scrollbar-thumb {
background: #666;
border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
background: #555;
}

0 comments on commit 0012cf1

Please sign in to comment.