Added colored scrollbar

This commit is contained in:
Airradda 2020-06-21 02:25:07 -05:00
parent a3d048e3ed
commit f8a6985b20
1 changed files with 11 additions and 0 deletions

View File

@ -432,3 +432,14 @@ a:link {
a:visited {
color: var(--link-visited-color);
}
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-thumb {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5);
background: var(--primary-color);
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: var(--primary-color-active);
}