I'm looking for a sass grid system that does not have edge gutters, a.k.a. there is no left gutter applied to the first column, and no right gutter applied to the last column.
Normally you could simply use :first-child / :last-child to remove the gutters, but then the first/last columns would be slightly wider than the rest (I'm using padding as gutters).
Is there a grid system that supports this? Or would I be better off writing it on my own?
Edit: I decided to go ahead and try writing my own solution :) Answer below.