I have this code:
@import "vars.less";
// Desktop/Laptop Section
@import "mixins-d-1.less";
@import "positioning.less";
@import "containers-d-1.less";
Inside containers-d-1.less
I reference a mixin from mixins-d-1.less
. However, I get an error saying that it's undefined.
I'm able to pull my variables out of vars.less
, why can't I pull my mixins out of mixins-d-1.less
?