Make scrollbars make sense.

7be1b039acaec91701197ab02f684f1f1a60fae2

Gness Erquint <gness.na@gmail.com>

1 files changed, +14 -2Ignore whitespace
public/style.css+14 -2
@@ -157,11 +157,23 @@ body {
157}157}
158158
159::-webkit-scrollbar {159::-webkit-scrollbar {
160 width: 10px;160 width: 0.7rem;
161 height: 10px;
162 scrollbar-gutter: stable;161 scrollbar-gutter: stable;
163}162}
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
165.scrollY {177.scrollY {
166 overflow-y: auto !important;178 overflow-y: auto !important;
167}179}