My first div spans 12 columns while the next divs only spans 3 columns. Something like this:
So I thought having omega(3n+1) to select the third div after the first one would be manageable. Turns out, as it's said in Neat documentation, composite argument such as 3n+1 is not supported.
I have tried div:first-of-type ~ div { @include omega (3n); }
to select the third occurrence after the first div, but to no avail.
Any idea what's the alternative?