react-custom-scrollbars-2 icon indicating copy to clipboard operation
react-custom-scrollbars-2 copied to clipboard

How to disable Parent component scrollbar?

Open sadashivm opened this issue 2 years ago • 1 comments

I have child component inside Parent component and both components have scrollbar. In some scenario I want to disable parent component scrollbar.

How should I achieve?

Can you please help me?

sadashivm avatar Aug 28 '22 13:08 sadashivm

Just put this in the parent css

.parent-component {
    overflow: hidden;
}

samyan avatar Jan 15 '23 16:01 samyan