better scrollbar

This commit is contained in:
binary-husky 2023-09-23 23:58:32 +08:00
parent d6eaaad962
commit c0c2d14e3d

View File

@ -50,3 +50,25 @@
gap: 4px; gap: 4px;
padding-block: 2px !important; padding-block: 2px !important;
} }
/* Scrollbar Width */
::-webkit-scrollbar {
width: 12px;
}
/* Scrollbar Track */
::-webkit-scrollbar-track {
background: #f1f1f1;
}
/* Scrollbar Handle */
::-webkit-scrollbar-thumb {
background: #888;
border-radius: 12px; /* Round the edges of the thumb */
}
/* Scrollbar Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #555;
}