How do I force a css grid container take the full width and height of the device screen for a single page app? Modified example is from Mozilla: Firefox documentation
If you want the .wrapper to be fullscreen, just add the following in the wrapper class:
.wrapper
position: absolute; width: 100%; height: 100%;
You can also add top: 0 and left:0
top: 0
left:0