How to prohibit resizing of dash components/graphs?

As titled. I do not want my components on page to change size automatically to adjust for the window size. Instead, I want to have a scroll bar at the button so that users can scroll over the page themselves. How do I achieve that?

Give your components a fixed width and height.
Set your Div style to allow overflow like style=overflow:scroll

That should work.