如何在基础站点6中扩展小型12(或其他类似)类?
没有设法扩展小-12,也没有在基础文件中找到这个类?请指教......@import '../bower_components/foundation-sites/scss/foundation.scss' ;
.form-field {
@extend .small-12
}
错误:" .form-field"未能@extend" .small-12"。
The selector ".small-12" was not found. Use "@extend .small-12 !optional" if the extend should be able to fail.
答案 0 :(得分:0)
进一步挖掘后,这似乎有效......
@import'settings / _settings.scss';
@import'基金会'; @include foundation-everything;
.form-field { @extend .small-12
}