Make scrollbars make sense.

7be1b039acaec91701197ab02f684f1f1a60fae2

Gness Erquint <gness.na@gmail.com>

1 files changed, +14 -2Showing whitespace changes
public/style.css+14 -2
@@ -157,11 +157,23 @@ body {
157157}
158158
159159::-webkit-scrollbar {
160160 width: 10px0.7rem;
161- height: 10px;
162161 scrollbar-gutter: stable;
163162}
164163
164+::-webkit-scrollbar-track {
165+ cursor: default;
166+ background-color: rgba(126, 126, 126, 0.2); /* Adaptive, but won't contrast with neutral-gray. */
167+}
168+
169+::-webkit-scrollbar-thumb {
170+ cursor: grab;
171+}
172+
173+::-webkit-scrollbar-thumb:active {
174+ cursor: grabbing;
175+}
176+
165177.scrollY {
166178 overflow-y: auto !important;
167179}