fix(ui): re-hide scroll bars. closes #2981

This commit is contained in:
Gabe Kangas 2023-05-04 10:52:47 -07:00
parent 017aa08a75
commit f0dbfbd0d5
No known key found for this signature in database
GPG key ID: 4345B2060657F330

View file

@ -117,3 +117,11 @@ body {
margin-left: 5px;
margin-right: 5px;
}
body::-webkit-scrollbar {
display: none;
}
body::-webkit-scrollbar-thumb {
display: none;
}