I have a mobile first website with two different grid settings. Till 600px:
$sm-screen-grid: (
columns: 5,
gutters: 1 / 3
);
Those gutters show as 2.5% padding, still trying to figure out how is that exactly being calculated. After 600 I switch to a 12 column grid. My problem is that I want the gutter width to still be 2.5%. I cannot seem to figure out what values to specify for gutters so it renders as:
padding-left: 2.5%;
padding-right: 2.5%;
fora a container.
Any advice?