design-discussion-elm-ui-2 icon indicating copy to clipboard operation
design-discussion-elm-ui-2 copied to clipboard

A repo for discussing changes to Elm UI 2

Results 24 design-discussion-elm-ui-2 issues
Sort by recently updated
recently updated
newest added

This is not an easy decision, so I'll try to give the pro and cons. The reason why I bring this up is that most simply that `px` does not...

In Elm-UI, if I want to make a list, I roll my own with bullets or numbers, each item is a row whose first element is the number, the rest...

Modals are hard to do right -- keeping tabbing in the modal, etc. requires a lot of finicky work. The native element resolves most of this. It would be great...

As mentioned in https://github.com/mdgriffith/elm-ui/issues/88, I think that make sense to allow the table row attributes, I think it's a very common use case. Is that in the plan for the...

So far the recommendation for achieving responsive design has been to subscribe to resizes and use an initial size in Elm. While this works, it has some downsides: - It...

# The problem Let's say that I have the following code: ```elm dropShadow : Element.Attribute msg dropShadow = Element.Border.shadow { offset = ( 0, 10 ) , size = 0...

To support a broader range of devices out of the box, consider using Pointer events to abstract over the various input types, e.g. these: https://package.elm-lang.org/packages/mpizenberg/elm-pointer-events/latest

I think I mentioned this in the past. Now the library is called "elm-ui" but it is imported as "import Element". The common practice is to use the same name...

Most properties can be described only as Integer now because, for example ``` px : Int -> Length ``` but browser are actually behaving differently if given non-integer values because...

I often find myself adjusting padding based on the window size, when a percentage would probably often suffice.