I'm using Singularity.gs 1.5.1 to produce a grid. When I declare additional gutter dimensions they are ignored. This is what I have:
@include add-grid(12);
@include add-gutter(20px);
@include add-gutter(30px at 640px);
@include add-gutter(40px at 1024px);
@include add-gutter-style('split' 'fixed');
@include sgs-change('output', 'float');
.column-1 {
@include grid-span(1, 1);
}
This is producing 20px grids at all screen sizes. According to the docs this should produce:
20px gutters at 0 - 640px
30px gutters at 640px - 1024px
40px gutters at 1024px and above
Why is this not working?