Richard Feldman
Richard Feldman
> How do media queries cascade when generating 1 class per declaration? How is the order of the output determined? Styletron also seems to suffer from this. (rtsao/styletron#113) Their solution...
> How do media queries cascade when generating 1 class per declaration? How is the order of the output determined? Styletron also seems to suffer from this. (rtsao/styletron#113) @Stijnkool I...
The compiler is interpreting this as intended, but we could definitely give a helpful tip in this situation!
A counter? Can you clarify what you mean by that? 🤔
The main problem I see with the counter approach is duplication. Suppose I write this: ```elm viewListItem item = li [ css [ backgroundColor aliceblue ] ] [ text item.caption...
I'm curious about doing something like [what Atomic CSS does](https://acss.io/#colors) - that is, using shorthand string concatenation instead of hashing, e.g. ```elm button [ css [ backgroundColor (hex "f00"), color...
This is good to think about, but there are a few other performance improvements I want to try first. The main reason is that my goal is for `Html.Styled` to...
Pre-1.0 Elm (the language) is currently versioned on "semver shifted by one digit" - in other words, `0.17.0` -> `0.18.0` is a breaking change, whereas `0.18.0` -> `0.18.1` would be...
It's been awhile since I spent time in the media queries portion of this code base, but as I recall, there are some unfortunate design constraints elsewhere which make it...
Thanks for the report @MiracleBlue, and thanks for identifying a fix @tolgap! I edited the title to reflect what we should do about this.