1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-23 19:53:43 +00:00

theme scrollbars

This commit is contained in:
Kyle Spearrin
2018-06-01 12:13:49 -04:00
parent de08a25c14
commit 37a64beb32
3 changed files with 17 additions and 8 deletions

View File

@@ -110,12 +110,17 @@ content::-webkit-scrollbar-track {
}
content::-webkit-scrollbar-thumb {
background-color: rgba(100,100,100,.2);
border-radius: 10px;
margin-right: 1px;
@include themify($themes) {
background-color: themed('scrollbarColor');
}
&:hover {
background-color: rgba(100,100,100,.4);
@include themify($themes) {
background-color: themed('scrollbarHoverColor');
}
}
}