yaminncco / vue-sidebar-menu

A Vue.js Sidebar Menu Component

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Hiding scrollbar

SciManJD opened this issue · comments

For some reasons the scrollbar in my application is visible without to be needed. Is there a way to disable the scrollbar at all?

Can you provide more details like does the issue persists in an different browser?

Strange... I didn't expect that this depends on the browser, but it is so... Normally I use Firefox and I see the scrollbar. I made test with Edge and the scrollbar doesn't exist. What else you want to know?

Zooming out is the cause for the scrollbar to appear.

Yes, you are right. I saw that the zoom was set to 90%. When I made it again 100%, the scrollbar disappeared. But is there a way to disable the scrollbar completely?

Temporary css fix:

.v-sidebar-menu .vsm--scroll {
  width: calc(100% + 100px);
}

Thanks a lot. This fix works fine.