I like to use Codekit for a Compass-Poject with Susy and Breakpoint.
@import "compass";
@import "compass/reset";
@import "susy";
@import "breakpoint";
But there is an error message "File to import not found or unreadable: breakpoint."
Can i use Breakpoint with Codekit2?
Thanks!
Yes, however as Codekit 2 doesn't come bundled with Breakpoint like it does Susy and Compass, it's not as easy as @import "breakpoint";
. What you will need to do is, using Codekit 2's Bower integration, download the breakpoint-sass
bower package and change your import to @import "../bower_components/breakpoint-sass/stylesheets/breakpoint";
.