Contribution Date
Technology
Contribution Project
Contribution Details
The .element-invisible
is the culprit here. It's getting clipped and a height of 1px pixel is being added to it. However there is no width added which is causing an overflowing container. Adding 1px width fixes the problem here.
.element-invisible {
clip: rect(1px,1px,1px,1px);
position: absolute!important;
overflow: hidden;
height: 1px;
width: 1px;
}
I'll add a patch as soon as I have access to the development site.
Contribution Issue Link
Contribution Link
Files count
0
Patches count
0