For some reason there is a bit of CSS on the documentation site urho3d.github.io/ that is making the scrollbar [size=85]tiny[/size] on webkit in main.css (main-min.css):
::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-thumb {
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.5);
}
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
border-radius: 10px;
}
And maybe others, but it is making the scrollbar utterly tiny on my screen, extremely thin and hard to click. Could this CSS and any related be removed?