Can I use Foundation XY Grid SASS mixins to create grid gutter variations?
For example, I would like to have a grid with a 30px gutter, and a grid with a 10px gutter. No other differences between the grids.
<!-- Regular (30px) grid gutter ->
<div class="grid-x grid-margin-x">
<div class="cell medium-6">
</div>
<div class="cell medium-6">
</div>
</div>
<!-- Custom (10px) grid gutter -->
<div class="grid-x grid-margin-x--small">
<div class="cell medium-6">
</div>
<div class="cell medium-6">
</div>
</div>