azouaoui-med / react-pro-sidebar

React Pro Sidebar provides a set of components for creating high level and customizable side navigation
https://azouaoui-med.github.io/react-pro-sidebar/
MIT License
1.72k stars 412 forks source link

Scroller disable (scrolling) #160

Closed robozb closed 1 year ago

robozb commented 1 year ago

Dear Community,

How can I disable the default scrolling function? I'd like to let the sidebar to fill the vertical space as It wants. I don't want it to use scrollbar.

Thanks: Bela

image

nazmulweb commented 1 year ago

You can remove it by passing a border none props on the Sidebar like below

<Sidebar rootStyles={{ border: 'none', }}> ....... </Sidebar>

To get more details visit here #153

stale[bot] commented 1 year ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

robozb commented 1 year ago

You can remove it by passing a border none props on the Sidebar like below

<Sidebar rootStyles={{ border: 'none', }}> ....... </Sidebar>

To get more details visit here #153

Thanks!