I have a page layout like seen below. The whole page is wrapped in a div with these properties:
grid-template-columns: 4rem 1fr
grid-template-rows: 4rem 1fr
height: 100vh
However, none of the panels shown below are constrained. Panel A has a property of overflow-y: scroll
and display: flex
and flex-direction: column
but as none of the components are constrained the scrollbar has no effect.
How could I achieve what is seen below without constraining any of the panels? I want Panel A to be only as large as it would be without its content, the rest should be scrollable