Merge pull request #10 from holepunchto/fix-scrollbar

fix scrollbar
This commit is contained in:
David Mark Clements
2024-01-17 16:16:18 +01:00
committed by GitHub

View File

@@ -24,7 +24,18 @@
transition: background-color .4s, color .4s;
}
html, body { overflow: scroll; }
::-webkit-scrollbar {
width: 7px;
height: 7px;
}
::-webkit-scrollbar-track {
background: #151517;
}
::-webkit-scrollbar-thumb {
background: #727272;
}
html.light body {
background: #efeaea;