我喜欢将 Codekit 用于带有 Susy 和 Breakpoint 的 Compass-Poject。
@import "compass";
@import "compass/reset";
@import "susy";
@import "breakpoint";
但是有一条错误消息“找不到要导入的文件或无法读取:断点。”
我可以在 Codekit2 中使用断点吗?
谢谢!
我喜欢将 Codekit 用于带有 Susy 和 Breakpoint 的 Compass-Poject。
@import "compass";
@import "compass/reset";
@import "susy";
@import "breakpoint";
但是有一条错误消息“找不到要导入的文件或无法读取:断点。”
我可以在 Codekit2 中使用断点吗?
谢谢!
是的,但是由于 Codekit 2 不像 Susy 和 Compass 那样与 Breakpoint 捆绑在一起,所以它不像@import "breakpoint";
. 您需要做的是,使用 Codekit 2 的Bower集成,下载breakpoint-sass
bower 包并将您的导入更改为@import "../bower_components/breakpoint-sass/stylesheets/breakpoint";
.
为什么不使用@include susy-breakpoint(setting, layout);?它允许您添加一次设置,而不是使用 @include breakpoint(your setting); 然后@include 布局(你的布局);在下一行。
我不再在 Bower 包的 Codekit 列表中看到 breakpoint-sass。我会继续检查。
对于那些在 Bower 包的 CodeKit 列表中找不到breakpoint-sass的人,您可以执行以下操作。
npm install -g bower
bower install at-import/breakpoint
进而
@import "../bower_components/compass-breakpoint/stylesheets/breakpoint"
在您的主.scss
文件中。