Currently, I am working on developing a layout that resembles most editor/IDE setups using material-ui and react. In this layout, I have a top bar, a bottom bar, side panels on both sides, and a center area. My main concern is how to ensure that this grid takes up the entire screen.
At the moment, the grid only expands based on the min-height of its inner elements. I specifically want the side panels to extend vertically to fill the screen completely.
If you would like to see an example of the layout I am aiming for, you can check out this simple demo: https://codesandbox.io/s/material-demo-0pl9e
To clarify, my goal is to expand the grid to cover the entire screen by enlarging only the central container.