Answer the question
In order to leave comments, you need to log in
How to solve undefined variable problem in LESS?
The Koala compiler outputs an error message: variable @pageWidth is undefined.
The bottom line is this: there is a list with LESS included files:
@import "grid-settings.less";
@import "variables.less";
min-width: @pageWidth;
@import "grid-settings.less"
in the media query:@lg-min: 1170px;
@media only screen and (min-width: 1170px) {
@pageWidth: @lg-min;
@colWidth: @col-lg;
@gutter: @gutter-lg;
.make-grid(lg);
.make-offsets(lg);
}
Answer the question
In order to leave comments, you need to log in
The SASS docs say that this construction will not work in media queries. Just read it yesterday. sass-guidelin.es/ru
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question