Richard Feldman
Richard Feldman
I'm ok with it if @ayazhafiz is ok with it! 👍
Please continue! This is awesome, and I really appreciate that you're doing it. 😻 Congrats on the Elm+Elixir contract, and please drop in and say hi on [Elm Slack](http://elmlang.herokuapp.com/)!
Thanks for your feedback @kuon! Some thoughts: > - Keyframe animations. Media queries, I can live without if I propagate the layout to my views, like style element does. I...
Both of them share a common underlying type - `VirtualDom.Node` - so they can already be used together in the same `view`! 😄
Check it out! ```elm type alias DatepickerStyles = { primaryColor : Css.Color , accentColor : Css.Color , headerStyle : Css.Style } datepicker : DatepickerStyles -> Html Msg ``` You can...
Documentation - changed the title to reflect this!
> But it actually can be harmful. For example if you render some third-party view inside that div and its top-level element also has a `.test` class, you will break...
> But something nicer in the spirit of Html.Styled would be great. But I don't have any ideas. Off the top of my head, here's an idea: ```elm Html.Styled.keyedChildren "div"...
@sporto Unfortunately that approach will have hash collisions with styles that happen to be identical in the non-hover state. So if I do this: ```elm labelStyles = Html.Styled.styles [ color...
> When each declaration gets its own class, how would cascading work when there are multiple declarations for the same css poperty? Should all those declarations be collapsed into the...