我刚刚安装了断点,添加
require "breakpoint"
到我的 config.rb,并定义了这些断点
$mobileMedium : 480px;
$tabletVertical : 768px;
$desktopNormal : 1024px;
$desktopWide : 1200px;
到我的 _breakpoint.scss。
当我尝试使用其中一个断点时,像这样;
@include breakpoint($mobileMedium) {
…
}
终端告诉我
error sass/screen.scss (Line 27: Undefined mixin 'breakpoint'.)
这是为什么?