Minimal repro
I've got a sidebar where the overflow-y: scroll doesn't want to behave. The goal is to keep both the main content and the sidebar at the full height of the viewport, but force the sidebar to scroll instead of the main content.
overflow-y: scroll
Just add overflow-y: hidden; to the .sidebar.
overflow-y: hidden;
Also height: calc(100vh - 30px); on .main
height: calc(100vh - 30px);
example