I am having an issue with my portfolio site where there is a white space on the right side in the mobile view, but only in Chrome. The desktop and Mozilla mobile views are fine. I have attached a screenshot highlighting the problem. Here is the link: Chrome Issue
html {
scroll-behavior: smooth;
margin: 0px !important;
padding: 0px !important;
width: 100%;
height: 100%;
}
body {
width: 100%;
height: 100%;
margin: 0px !important;
padding: 0px !important;
font-family: 'Montserrat', sans-serif;
position: relative;
}
#preloader {
height: 100%;
width: 100%;
position: fixed;
top: 0;
left: 0;
background: rgba(51, 51, 51, 1);
z-index: 999;
}
/* More CSS code... */
In the provided snippet, I have included the CSS code used in the beginning of the HTML Body section for reference. I have tried various methods to troubleshoot the issue, such as using the ghost CSS technique to check if any element is extending beyond the viewport width, but I have not been able to identify the root cause. Any help in identifying the source of the problem would be greatly appreciated. Thank you in advance.