So, I'm using PureCSS for grids and decided to build a couple helper mixins to later on mix into my components. A particularly helpful one should in principle be something like this:
.cols(@howmany:1, @of:12){
.pure-u-@{howmany}-@{of};
}
but that's currently causing LESSCSS 1.7.5 to choke on "unrecognised input"
Am I stuck declaratively telling my classes to use .pure-u-5-24 instead of my slightly easier on the eyes version?