I'm using with-layout to temporarily set defaults for my page column structure. I need a 24 column grid to allow finer control, but need a gutter that's larger than 1 column. Is that possible?
@include with-layout(24) {
.col-1 {
@include span(17);
}
.col-2 {
@include span(7);
}
}
So something like @include with-layout(24 2col-gutter) { ... }