I'm using Visual Studio 2012 and Web Essential 2012 and Less generates the css not as, as expected
//style.less
.selector{
max-height: calc(100vh - 200px)
}
In the style.css it's generates something like this
//style.css
.selector{
max-height: calc(-100vh);
}
Any ideas?