I got a problem when I using SUSY build a grid. I set wrapper class following:
$susy: (
math: fluid,
columns: 12,
gutters: 0.25,
gutter-position: split,
);
the problem is child element inside wrapper. In case sometime I want to make full columns I try to do this
@include span(full);
but this is not full, It has gutter gap. and I try another
@include span(full no-gutters);
this make element no gutter but it still leave gutter width.
how can I make it full (no gutter) ? only for some element.
Thanks Chalat