0

我喜欢将 Codekit 用于带有 Susy 和 Breakpoint 的 Compass-Poject。

@import "compass";
@import "compass/reset";
@import "susy";
@import "breakpoint";

但是有一条错误消息“找不到要导入的文件或无法读取:断点。”

我可以在 Codekit2 中使用断点吗?

谢谢!

4

4 回答 4

6

是的,但是由于 Codekit 2 不像 Susy 和 Compass 那样与 Breakpoint 捆绑在一起,所以它不像@import "breakpoint";. 您需要做的是,使用 Codekit 2 的Bower集成,下载breakpoint-sassbower 包并将您的导入更改为@import "../bower_components/breakpoint-sass/stylesheets/breakpoint";.

于 2014-05-07T14:05:41.640 回答
0

为什么不使用@include susy-breakpoint(setting, layout);?它允许您添加一次设置,而不是使用 @include breakpoint(your setting); 然后@include 布局(你的布局);在下一行。

于 2014-05-09T12:31:25.550 回答
0

我不再在 Bower 包的 Codekit 列表中看到 breakpoint-sass。我会继续检查。

于 2015-03-30T19:25:46.090 回答
0

对于那些在 Bower 包的 CodeKit 列表中找不到breakpoint-sass的人,您可以执行以下操作。

npm install -g bower
bower install at-import/breakpoint

进而

@import "../bower_components/compass-breakpoint/stylesheets/breakpoint"

在您的主.scss文件中。

于 2015-07-29T02:34:30.083 回答