CSS Help Regarding Scrollbars

Hello

I am stuck trying to figure out how or if it is possible to remove scrollbars

The Problem

I am trying to remove the scrollbars from Logseq. I managed to hide the scrollbars but when i have the right side bar closed the space it took up is still there and as a consequence jumping from the daily journal to any other page means the two views are not unformal.

So I figured if i could remove the scroll bar completely this might work?

Or alternatively how can I change the centering of pages so they are perfectly balanced in the middle of the screen exactly the same as the daily journal?

Hope that makes sense?

Any help is warmly welcomed

regards

Kane

Try putting the following inside file custom.css:

::-webkit-scrollbar {
    display: none;
}
1 Like