I can't seem to get the react root div to fill the browser page. 
I've tried adding the following CSS, and just about every combination of
html, body {
margin: 0;
height: 100%;
}
.fill-height {
min-height: 100%;
height:auto !important; /* cross-browser */
height: 100%; /* cross-browser */
}
#root > [data-reactroot] { height: 100vh }