add custom scrollbar

This commit is contained in:
DaOfficialWizard 2022-06-30 00:28:54 +02:00
parent 0636c6ec2c
commit 07a78dcf5e

View File

@ -132,3 +132,25 @@ input[type=checkbox]:focus {
body {
cursor: default
}
/* width */
::-webkit-scrollbar {
width: 6px;
}
/* Track */
::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px grey;
border-radius: 10px;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #6d7faeb4;
border-radius: 10px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #6d7fae;
}