elm-styled
elm-styled copied to clipboard
Styling your Html Elements with typed Css 💅
I tried a lot of options like ``` const keyframesShapeTransform = keyframes` from { border-radius: 50%; } to { border-radius: 0px; } `; const spinnerAfterBefore = { content: '', position:...
I'm not able to install using `elm-package install styled-components/elm-styled`. If I try that I'm getting this error: ``` Error: Could not find any packages named styled-components/elm-styled. Here are some packages...
Hi, Any chance to add the user-select property? https://developer.mozilla.org/en-US/docs/Web/CSS/user-select Couldn't find it and I wasn't too sure where to put it. Cheers!
We need some way to add media query support. ```Elm header = styled div [ padding (rem 4) , media (maxHeight (rem 10)) [ padding (rem 2) ] ] ```...
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...
Hi! Thank you for your work! I am new to Elm, so excuse me if I'm asking something obvious. I've installed elm-styled directly from github with yarn. I added its...
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...
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) ,...
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...