Merge pull request #3887 from Erquint/staging

Make scrollbars make sense.
This commit is contained in:
Cohee
2025-04-21 21:19:49 +03:00
committed by GitHub

View File

@ -157,11 +157,26 @@ body {
}
::-webkit-scrollbar {
width: 10px;
height: 10px;
width: 0.8rem;
scrollbar-gutter: stable;
}
::-webkit-scrollbar-track {
cursor: default;
}
::-webkit-scrollbar-track:hover {
background-color: rgba(126, 126, 126, 0.2); /* Adaptive, but won't contrast with neutral-gray. */
}
::-webkit-scrollbar-thumb {
cursor: grab;
}
::-webkit-scrollbar-thumb:active {
cursor: grabbing;
}
.scrollY {
overflow-y: auto !important;
}