Hide all scrollbars in v0.13.33 using css

The following code used to hide all scrollbars:

.CodeMirror-vscrollbar, .CodeMirror-hscrollbar, ::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

It no longer works in v0.13.33. Using the inspector, I can’t isolate the scrollbar to be able to identify and target it. I have looked at the app.css file but not been able to work out what to change.

Anyone able to help?

Thanks

Angel

Unending bliss:

body:not(.native-scrollbars) ::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

Angel

1 Like

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.