rtfeldman / elm-css

Typed CSS in Elm.
https://package.elm-lang.org/packages/rtfeldman/elm-css/latest
BSD 3-Clause "New" or "Revised" License
1.23k stars 196 forks source link

Expose CalculatedLength #519

Closed jgrenat closed 4 years ago

jgrenat commented 4 years ago

Hello!

A small PR to expose CalculatedLength in order to have type annotations if we need to. For example, I'm exposing from my design system the remaining height of the page minus the header height:

remainingHeight =
    calc (pct 100) minus (px 100)
rtfeldman commented 4 years ago

Makes sense - thanks @jgrenat!