New Tab Sizing
when creating a newtab, seeing that trying to max out the height and width of the newtab using height: 100vh, etc. still leaves gaps around the edges. There is also a scroll bar that appears. Wondering if there is a better way to size the newtab component to take over the whole screen.
Solution:Jump to solution
Ended up resolving this by just editing the window styles as such :
useEffect(() => {
document.body.style.margin = "0"
document.body.style.overflow = "hidden"
})
...2 Replies