Using the susy compass addon, when use the span-columns
mixin to be set to $total-columns
how can I disable the margin-right value being set by $gutter-width
?
At the moment my code is:
.element{
@include span-columns(12);
}
results in
.element{
width: 100%
margin-right: 2.12766%;
}
ideally i would like margin-right not to exist?