Is the default height of the scroll thumb determined by the scrollable area? If not, am I able to adjust the scrollbar thumb height myself? If so, how can this be done? I attempted to change it using the following code snippet.
body::-webkit-scrollbar-thumb {
background-color: darkgrey;
outline: 1px solid slategrey;
height: 5px;
}
However, I did not see any changes on the page. Any assistance would be greatly appreciated. Thank you in advance.