Hi Cory, I think I've found a little bug with the lost-move where it seems to default to the global gutter value.
In the test case I have two columns (1/3 and 2/3) and I want to swap their positions and without any gutter.
div1{
lost-column: 2/3 0 0 no-flex;
lost-move: 1/3;
}
div2{
lost-column: 1/3 0 0 no-flex;
lost-move: -2/3;
}
The problem is that lost-move ignores the gutter override and you still get a gap and the offsets are out.
I can get around it by setting @lost gutter 0; but that's not ideal.
Demo: http://codepen.io/sidonaldson/pen/rxVvpm/
What do you think?