我最近安装了 Bourbon Neat,但是当我使用 Sass Build 在 Sublime Text 2 中编译我的 Scss 时,我收到以下错误:
Sass::SyntaxError: File to import not found or unreadable: bourbon/bourbon.
这是我的 scss 文件:
@import "bourbon/bourbon";
@import "neat/neat";
$desktop: new-breakpoint(min-width 768px 12);
$tablet: new-breakpoint(max-width 768px 1);
.container {
@include outer-container;
}
.content-pri {
@include span-columns(9);
}
.content-sec {
@include span-columns(3);
}
我是否错误地安装了 Bourbon 和 Neat?任何帮助将非常感激!