plibither8/markdown-new-tab

scrollbars are not hidden properly

philomorphism opened this issue · 1 comments

scrollbars are hidden but while typing it appears and disappears for few microseconds!

adding the following custom css solves it with the typewriter effect! :)

html { overflow: scroll; overflow-x: hidden; overflow-y: hidden; } ::-webkit-scrollbar { width: 0px; /* remove scrollbar space / background: transparent; / optional: just make scrollbar invisible / } / optional: show position indicator in red */ ::-webkit-scrollbar-thumb { background: #FF0000; }