My struggle is to make the react root div cover the entire browser page. https://i.sstatic.net/sQlWw.png
I have experimented with different CSS snippets, including the following:
html, body {
margin: 0;
height: 100%;
}
.fill-height {
min-height: 100%;
height:auto !important; /* ensuring cross-browser compatibility */
height: 100%; /* ensuring cross-browser compatibility */
}
#root > [data-reactroot] { height: 100vh }