我使用的是波旁威士忌和尼特威士忌,并且有以下代码
@include direction-context(right-to-left) {
div.actions { @include shift(3); @include shift(10); }
}
我得到以下错误:
Undefined mixin 'direction-context'.
我已经仔细检查了相关文件,但我不明白为什么这不起作用。请注意,我正在成功地使用框架中的其他mixin。
更新
我有以下版本:
neat (1.5.1)
bourbon (>= 3.1)
sass (~> 3.2.19)
direction-context
mixin在1.7.0中引入。如果你想使用Sass堆栈,你需要更新它,因为1.7.1只适用于Sass 3.3及以上版本。
或者,您可以在Neat 1.5.1中使用父元素上的@include row($direction: RTL);
更改方向,然后在完成后调用@include reset-direction();
(通常在文件底部)。