I'm struggling with understanding how this mixin works. The example the documentation provides is...
@include grid-row($columns, $behavior, $width, $cf, $gutter) { */ what goes here???*/ }
This is what I have in my SCSS...
.custom_row {@include grid-row(20, nest, 1000, true, 15);}
What I'm trying to do is make a row that has 20 columns instead of the default 12.
The SCSS seems to compile fine but that mixin isn't outputting anything to my CSS.