Open samazgor opened 6 years ago
@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
Progressive Web App
> The viewport size is 1364px, whereas the window size is 1366px.