One of my biggest complaints with Bootstrap is the grid system (classes or mixins) and the very strict hierarchy of container > row > columns. I find this pattern leads to a lot more extraneous elements than I would like. I'd compare this to [Bourbon Neat]( http://neat.bourbon.io/ ) (which I've only looked over) and [Foundation's grid]( http://foundation.zurb.com/docs/components/grid.html ) mixins which seem to be mu…
.wrapper {
.make-row();
}
.content-main {
.make-column(8);
}
.content-secondary {
.make-column(3);
.make-column-offset(1);
}
...
...