My gulp setup yields the following error:
assets\styles\core\_z-indexes.scss
Error: unclosed parenthesis
on line 2 of assets/styles/core/_z-indexes.scss
>> mobile_menu: 40;
---------------^
Below is the content of the file in question. What's wrong with it?
$zIndexes: (
mobile_menu: 40;
);
@function getIndex($zIndexName) {
@return map-get($zIndexes, $zIndexName);
}
Don't use the semicolons in your map, separate values with commas ,
and keep the last one open.
$zIndexes: (
mobile_menu: 40
);
@function getIndex($zIndexName) {
@return map-get($zIndexes, $zIndexName);
}
If this is not it maybe put your 'mobile_menu'
in quotes.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With