I'm finding myself frequently having to negate gutters with margin-left: 0; margin-right: 0;
. I tried setting gutters in a custom layout to 0
$my_layout: (gutters: 0);
.my_class {
@include with-layout($my_layout) {
...
}
}
but this does not set the gutter width to 0, it just tells susy not set gutters at all.
How do you set gutters to 0 in a susy layout (instead of just setting them to null)?