我正在尝试使用susy,node-sass,grunt-sass编译我的SCSS文件我使用NPM安装添加了所有这些依赖关系。我正在添加grunt的设置,例如
sass: {
options: {
implementation: sass,
sourceMap: true
},
dist: {
options: {
style: 'expanded',
require: 'susy'
},
files: {
'app/crossbrand_us/styleguide/css/shared.css': 'app/sass/xb/widgets/advertised-offers/wdgt-advertised-offers-vehicle.scss'
}
}
},
@import "wdgt-advertised-offers-shared";
@import "node_modules/susy/sass/susy";
$wdgt-advertised-offers-vehicle-selector: ".wdgt-advertised-offers-vehicle";
#{$wdgt-advertised-offers-vehicle-selector} {
@include pad(1%);
}
但这会引发错误
Fatal error: no mixin named pad
我该如何修复?
SUSY(3.x)的最新版本不包括任何混音素。为了使用旧混音素,您必须降级到2.x版本的Susy(2.2.14是最新的)。或查看文档以开始使用Susy 3。
我不确定设置中是否还有其他问题……