I spent a couple hours to figure it out but no luck, so basically I've this configuration
$susy: (
columns: 12,
gutters: 54px/53px,
container: 1230px
);
In my layout file _layout.scss
, I've this
@include layout( $susy inside );
.content-area {
padding-top: gutter( 6 );
.layout-2c-l & {
@include span( 8 of 12 no-gutters );
@include gutters(5); // 62.0625px
}
.archive.layout-2c-l &,
.search.layout-2c-l & {
padding-left: 0;
padding-right: 0;
}
}
In my case, on archive and search page I've to remove the gutters then re-added it via it's child elements like so in _archives.scss
file
.page-header {
@include gutters(5); // 41.375px
}
As you can see the code above beside the gutters I add the pixel value, the first gutters resulting 62.0625px
and the the second one 41.375px
.
If this is how susy works, is there any way to get the same result?