styled scrollbar

This commit is contained in:
David Mosbach 2023-05-28 13:52:51 +02:00
parent 4520c8a120
commit 0d770bf612

View File

@ -71,6 +71,7 @@ body {
bottom: 20px;
left: 20px;
right: 20px;
padding-right: 10px;
overflow-y: auto;
overflow-x: hidden;
text-align: justify;
@ -123,4 +124,21 @@ body {
.contextmenu div:active {
background-color: rgb(250, 250, 250);
}
::-webkit-scrollbar {
width: 5px;
}
::-webkit-scrollbar-track {
background: transparent;
}
::-webkit-scrollbar-thumb {
background: rgba(120, 120, 120, 0.555);
border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
background: rgb(120, 120, 120);
}