css make div scrollable vertically after certain height code example
Example 1: css scrollbar vertical only
style="overflow:scroll; overflow-x: hidden;" // x is horizontal, y is vertical
Example 2: scrollable div and unscrollable middle component
.sidebar {
position: sticky;
top: 0;
height: 100vh;
}