Upon completing my project, I noticed that my localhost:3000 is zoomed in at 125%, causing it to appear less than ideal at 100% zoom.
Is there a way to adjust the zoom/scale of my website to match how it appeared on my localhost environment? I came across a solution here that addresses browser zoom. However, when I attempted to use this code:
function toggleZoomScreen() {
document.body.style.zoom = "125%"; //my zoom was set at 125%
}
It simply zoomed in on the webpage's view like a camera and unexpectedly shifted the website to the right as demonstrated in this image: https://i.sstatic.net/dahGO.jpg.
Here is a comparison of how it appears with my browser zoom set at 125%: https://i.sstatic.net/1ohVf.jpg
Is there a way to rectify this without having to redo the CSS for the entire website?