If you've upgraded to Sass 3.5.0 or higher you're likely getting this warning every time you try to compile something using the grid-span mixin. More information for why this warning exists is available in the Sass Changelog and in this article.
In order to get rid of it you need to wrap the function call with get-function().
Go to lines 58 through 64 on singulairtygs/_api.scss and change:
@if $Direction == 'both' or $From == 'left' or ($Direction == 'rtl' and $From == 'opposite') {
$Left: call('output-#{$output-style}', map-merge($Span-Map, ('direction': left)));
}
@if $Direction == 'both' or $From == 'right' or ($Direction == 'ltr' and $From == 'opposite') {
$Right: call('output-#{$output-style}', map-merge($Span-Map, ('direction': right)));
}
to
@if $Direction == 'both' or $From == 'left' or ($Direction == 'rtl' and $From == 'opposite') {
$Left: call(get-function('output-#{$output-style}'), map-merge($Span-Map, ('direction': left)));
}
@if $Direction == 'both' or $From == 'right' or ($Direction == 'ltr' and $From == 'opposite') {
$Right: call(get-function('output-#{$output-style}'), map-merge($Span-Map, ('direction': right)));
}
If you've upgraded to Sass 3.5.0 or higher you're likely getting this warning every time you try to compile something using the grid-span mixin. More information for why this warning exists is available in the Sass Changelog and in this article.
In order to get rid of it you need to wrap the function call with get-function().
Go to lines 58 through 64 on singulairtygs/_api.scss and change:
to