This works:
TweenLite.to(el, 1, {top: '100vh'})
But this doesn't:
TweenLite.to(el, 1, {y: '100vh'})
In the first instance the elements ends up with style="top: 100vh" but in the second it ignores the unit and ends up with style="transform: translate3d(0, 100px, 0)".
Any way to force the transform tween to use viewport units?