Konstantin Pschera

Results 16 issues of Konstantin Pschera

This is a: - Bug Report Which concerns: - flow-runtime --- ### What is the current behaviour? The following code breaks at runtime: ```js type $DeepShape = Object & $Shape...

We need some way to add media query support. ```Elm header = styled div [ padding (rem 4) , media (maxHeight (rem 10)) [ padding (rem 2) ] ] ```...

enhancement

I recently realized that only the `elm-lang/core` package is allowed to have native JS code. Currently `elm-styled` is using native JS code to inject the CSS. The problem is that...

help wanted
discussion

Elm currently doesn't have template strings which is the reason I decided to implement each CSS declaration as a function. Maybe a way to support both would be great so...

discussion

If the overwritten styles are already injected the order of the rules are different. ```elm button = styled Html.button [ backgroundColor white , color pink , fontSize (Styled.em 1) ,...

bug

Elm can type check pretty much but some CSS declaration have some other limitation. I would like to add warnings if they get ignored. - [ ] steps first argument...

enhancement

Provide a way to use the CSS `calc` function with elm-styled

enhancement

We should test at least the insert logic before final release. I don't know if it's necessary to test every single rule. Add tests for: - [ ] Keyframes -...

enhancement

elm-styled needs some way to select child items. I think the simplest solution would be a `select` function which takes a `String` as the selector and a `List Rule`. ```Elm...

enhancement

Scoped CSS is awesome but some things need to be inserted globally. A injectGlobal function similar to styled-components one would be great. The problem is that this is a side...

enhancement