Throughout my stylesheets I have calls to span, using Susy's mixins to control the widths of the numerous modules used across a site.
I now have a requirement to change the grid gutter width at a given breakpoint. Whereas with a traditional grid…
There's an unwanted space between two blocks in susy. It seems to follow the size of the grid exactly, despite using the wide feature.
$susy: (
columns: 9,
gutters: 0.454,
debug:(image: show,
output : overlay,)
)
;
#grid{
@include…
I am trying to generate gutters which span 1/5 of 4 a column span. The global setup is:
$page-width: 1080px;
$susy: (
columns: 12,
math: fluid,
gutter-position: inside,
gutters: 1/4.5, // will be overriden; I think ...
…