Hello,
We Really Apologize about the Inconveniences caused! Please find the following code in the sass/mixins.scss File:
translate3d($val,$val,$val) {
-webkit-transform: translate3d($val, $val, $val);
-ms-transform: translate3d($val, $val, $val);
-o-transform: translate3d($val, $val, $val);
transform: translate3d($val, $val, $val);
}
and replace it with:
translate3d($val,$val2,$val3) {
-webkit-transform: translate3d($val, $val2, $val3);
-ms-transform: translate3d($val, $val2, $val3);
-o-transform: translate3d($val, $val2, $val3);
transform: translate3d($val, $val2, $val3);
}
This will definitely fix the issue. Let us know if we can help you with anything else or if you find any further issues.