Kronuz / pyScss

pyScss, a Scss compiler for Python
MIT License
582 stars 141 forks source link

Units don't correctly cancel #147

Closed eevee closed 11 years ago

eevee commented 11 years ago
p {
    $numerator: 4px;
    line-height: $numerator / 2px;
}

The px should cancel and produce 2, but the result is 2px.