Created by: MartijnCuppens
Negative values can be added to the $spacers
sass map. This could come in handy for negative margins, but by default the padding utils are also generated.
$spacers: (
n1: ($spacer * -.25),
0: 0,
1: ($spacer * .25),
2: ($spacer * .5),
3: $spacer,
4: ($spacer * 1.5),
5: ($spacer * 3)
);
This PR checks if the value is not negative before generating the padding utils.