I am using react-flexbox-grid from https://github.com/roylee0704/react-flexbox-grid, while it allows me to specify the column sizes I am not able to fill my whole page.
I want the Holy-Grail layout as seen here:
React-Flexbox-Grid: How to fill the whole page?
2.5k Views Asked by optional At
1
You can do this with plain ol' flexbox. You probably just want a container with
min-height: 100vh;
With the following CSS:
here is a simple codepen demonstrating it in practice