Skip to content

calc in SizeUnit #28

@ghivert

Description

@ghivert

I think we should be able to access calc in SizeUnit. It is as much legit than any other thing, and avoid costly computation in JS when wanting to compute a layout for example. And it allows to mix and match different values.

An idea:

myStyle =
  [ width 
    (Sizes.calc 
      (Sizes.div 
        (Sizes.sub (px 50) (px 104)) 
        (vw 100)
      ) 
    )
  ]

This would results in:

.myStyle {
  width: calc((50px - 104px) / 100vw);
}

Because all the CSS is computed directly by the browser with a C++ engine, we would gain in performance instead of subscribing to the size of the window to do the same computation in Elm.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions