elm-css
elm-css copied to clipboard
Typed CSS in Elm.
Add `animation-timing-function` property #591 I had to restructure a bit to reuse the transition timing functions, which should be exactly the same. If you prefer a copy/paste solution, I will...
As of #11 I would like to add the `animation-timing-function` property. There is a PR (without chores: changelog, etc.).
Hi I'm trying to add `transform-origin : center`, however this api doesn't seem to be provided. I can just use [`property`](https://package.elm-lang.org/packages/rtfeldman/elm-css/latest/Css#property) for now, but I thought I'd open an issue...
There is the CSS [`gap`](https://developer.mozilla.org/en-US/docs/Web/CSS/gap) property but it's not yet supported in elm-css. Only a gap transition exists already. Can I add it in a PR? I think it's very...
`generalSiblings` is (I think) a misnomer, since the selector will only apply to _subsequent_ siblings, so I think `subsequentSiblings` would be a more appropriate name. See the [discussion in the...
Passing a class name that contains "/" (or any character that is special in CSS) works in an unexpected way. This two classes won't match, even tough they are specified...
Add gap
Hello! `gap` is a fairly new css property. I reach for it quite a lot. In flex containers with `gap`, all the children will have a gap of that size...
... just stumbled on this double not and wanted to provide a fix
Am I overseeing something, or do the span tags that are added by `elm-css` cause problems when using (justify-content : space-between). ``` view = div [ css myStyle ] [...
> Prior discussions: https://github.com/rtfeldman/elm-css/issues/430 https://github.com/rtfeldman/elm-css/issues/431 https://github.com/rtfeldman/elm-css/pull/227 #275 I'd like to add animations to `elm-css`, which requires some API design work. CSS Tricks has [the best intro I've read on the...