I recently installed Bourbon Neat but when I compile my Scss in Sublime Text 2 using Sass Build I get the following error:
Sass::SyntaxError: File to import not found or unreadable: bourbon/bourbon.
This is my scss file:
@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);
}
Have I installed Bourbon and Neat incorrectly? Any help would be much appreciated!