Remove the WebKit-specific scrollbar styling altogether

It is preferable to remove WebKit-specific styling and use the browser
and OS default scrollbars.
Thanks to comments from @julianfortune, @arniu, and @ehuss.

Closes #1483.
This commit is contained in:
Noritada Kobayashi 2023-01-18 23:51:09 +09:00
parent 1ba2c063e0
commit dcc9efea0a
1 changed files with 0 additions and 8 deletions

View File

@ -2,14 +2,6 @@
@import 'variables.css';
::-webkit-scrollbar {
background: var(--bg);
width: 8px;
}
::-webkit-scrollbar-thumb {
background: var(--scrollbar);
border-radius: 4px;
}
html {
scrollbar-color: var(--scrollbar) var(--bg);
}