I am using twitter bootstrap v 3.0 RC1 and I installed node and npm to compile less to css when I save the less file.
I include the bootstrap.css file into my html head, when I save the bootstrap.less, it compiles it into css like you would expect.
I created another .less file, (theme.less) within the same bootstrap/less directory where bootstrap.less resides with all the imports, thinking it would include those styles too, but it keeps giving me the following error when I try to compile the theme.less file:
NameError: .make-column is undefined in /path/to/assets/bootstrap/less/theme.less
/* ------- Theme styling ------- */
.content-body {
.make-column(10);
}
I assume it is undefined since theme.less does not have a clue the .make-column mixin is, I am new to this so I am trying to figure out how to do this correctly, thanks