Bourbon Neat グリッド ミックスインを使用して、グリッド用の BS のようなクラスを作成しようとしています。私のコードは次のようになります。
@each $num in 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12 {
.span#{$num} {
@include span-columns(#{$num});
}
}
私がしたいことはこれです:
.span1 {
@include span-columns(1);
}
.span2 {
@include span-columns(2);
}
//...
Grunt ビルド ログは次のように言っています。
Syntax error: Undefined operation: "1 times 4.2358em".
on line 9 of bower_components/neat/app/assets/stylesheets/grid/_private.scss, in `span-columns'
from line 25 of app/sass/main.scss
私が理解できないのは、$num から mixin に値を渡すことができない理由です。