I'm currently utilizing React JS and have organized my components as follows:
- nav
- div
- section
In the respective folders:
- (Folder: Navbar.js, Navbar.scss)
- (Folder: MyDivSection.js, MyDivSection.scss)
- (Folder: MySection.js, MySection.scss)
- All these are called in App.js file.
- The rendering is done in index.js file ( ReactDOM.render(, document.getElementById('root')); )
This is how my page layout looks like: https://i.sstatic.net/3gE2P.png
There's an unwanted white space at the bottom of the page, specifically present in resolutions 768px, 480px, and 1200px. How can I remove it using sass/css?
Please note: The white space issue occurs only under certain resolutions mentioned above.