我有一个desktop.less
文件,其中导入了所有LESS文件,然后编译了desktop.less
个文件。这很好用。但是今天我发了一个mixins.less
文件。在该文件中,我有一个mixin用于设置几个元素的高度:
(mixins.less)
// Set height of the form
.form-height(@height: 43px;) {
.sd-select {
height: @height;
}
.form-control {
height: @height;
}
}
然后我将.form-height
放在另一个LESS文件中,如下所示:
(new-landing.less)
.standard-form {
.form-height;
&.registerLandingForm {
width: 926px;
}
.sd-select {
&:before {
}
}
}
但是当我编译时,我得到.form-height is undefined
造成这种情况的原因是什么?我试图将mixins.less
文件放在desktop.less
的第一位,但它仍然给我错误。
任何帮助都将不胜感激。