test/omega.scss in neat-1.2.1 vs test/omega.scss in neat-1.3.0

- old
+ new

@@ -1,35 +1,42 @@ @import 'setup'; .omega-default { @include omega; - color: #000; } .omega-table { @include omega(table); } -.omega-block-left { - @include omega(block, left); - color: #000; -} - -.omega-table-left{ - @include omega(table, left); -} - .omega-nth-default { @include omega(4n) } .omega-nth-table { @include omega(4n table); } -.omega-nth-default-left { - @include omega(4n block, left); +.omega-complex-nth { + @include omega("4n+1"); } -.omega-nth-table-left { - @include omega(4n table, left); +section { + @include row($direction: RTL); + + .omega-default-left { + @include omega; + } + + .omega-table-left{ + @include omega(table); + } + + .omega-nth-default-left { + @include omega(4n block); + } + + .omega-nth-table-left { + @include omega(4n table); + @include reset-layout-direction; + } }