This did not fix our problem. Do you have any other suggestions or do you want to take a look yourself? You got the logins so maybe you can take a look?
We found a workaround for the bug. We disabled the transition on mobile/small screens and after that it worked!
Here is the code (It only happend on devices with iOS 12)
@media only screen and (max-width: 1024px) {
.notransition {
-webkit-transition: none !important;
-moz-transition: none !important;
-o-transition: none !important;
transition: none !important;
}
}
We hope you can do something back for us.