I've had this question answered previously here: How to do a three column grid with bourbon neat? However, since I updated bourbon and neat on my system, that method no longer works.
Again, my markup looks like this:
<div class="row">
<div class="col">
</div>
<div class="col">
</div>
<div class="col">
</div>
<div class="col">
</div>
<div class="col">
</div>
<div class="col">
</div>
</div>
And my scss looks like this:
.row {
@include grid-container;
.col {
@include grid-column(4) ;
}
}
And the result looks like this:
https://i.stack.imgur.com/9lZHx.png
In previous versions this staircase issue could be fixed by using the omega mixin.
However, with the current version, if I include 'omega(3n)' sass returns "no mixin named omega".
If I go to the docs for the current version I can see that there is no information on 'omega' anymore. The changelog for 2.0 states that omega has been removed.
So, with the current version of neat: how can I create a three-column grid?