I've built this app using the create-react-app CLI, but I'm struggling to remove the extra white spaces surrounding my main container. Check out the screenshot below for reference. Currently, the only div
in my app has the following CSS:
.mainContainer{
display: flex;
flex-direction: column;
background-color: black;
}
I've attempted setting both margin and padding to 0px, but unfortunately, neither solution has worked.