bug: SASS error in header.scss

1 reply · opened Aug 16, 2016

GgothassosAug 16, 2016

During my build process, I've received the following error:

Message:
== External: source/assets/stylesheets/sass/header.scss
== External: Error:
== External: parameter $val provided more than once in call to Mixin translate3d
== External: on line 1065 of source/assets/stylesheets/sass/header.scss
== External: >> @include translate3d(0,0,0);

SSemicolon WebSTAFFSep 2, 2016

Hello,

[sb_private_reply]We Really Apologize about the Delays in replying to your Support Query and Really Really Appreciate your Patience with us![/sb_private_reply]

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.

Have the same question, or something new?

Sign in to the Canvas dashboard to reply or open your own topic. Canvas owners get direct help from the SemiColonWeb team.

Reply on the dashboard