We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Progressive Web App > The viewport size is 1364px, whereas the window size is 1366px.
Progressive Web App
The text was updated successfully, but these errors were encountered:
@samazgor try and run this script on the developer console see it return any elements
(function (d) { var w = d.documentElement.offsetWidth, t = d.createTreeWalker(d.body, NodeFilter.SHOW_ELEMENT), b; while (t.nextNode()) { b = t.currentNode.getBoundingClientRect(); if (b.right > w || b.left < 0) { t.currentNode.style.setProperty('outline', '1px dotted red', 'important'); console.log(t.currentNode); } }; }(document));
In your case, the element which is overflowing. use css to make sure it doesn't overflow for example , on the container
max-width: 100vw; overflow-x: hidden
Sorry, something went wrong.
No branches or pull requests
Progressive Web App
> The viewport size is 1364px, whereas the window size is 1366px.The text was updated successfully, but these errors were encountered: