Hi @ehsd and @VRANKOVINA ,
I tested the Card and Tabs elements in IE11 and Edge, Both elements works in Edge but I was able to replicate the issue in IE11. I’ve submitted this to our issue tracker so the developers will be made aware of it.
As a temporary fix for the Card element as this can be fixed using CSS only, you can add the following code in the Theme Options > CSS:
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
.x-card:hover .x-card-face.is-back {
transform: rotate3d(1, 0, 0, 0deg);
}
}
You might not get an animation with the above code but this will fix the flipping issue. Please note that this is only a temporary fix, you must remove the code once the fix is released.
Hope this helps!