Chadtech

Results 25 issues of Chadtech

Take the existing pixel data, and scale it ```Elm scaleX : Float -> Canvas -> Canvas scaleY : Float -> Canvas -> Canvas scale : Float -> Canvas -> Canvas...

When researching the uses of `List.Extra.init`, I noticed multiple instances in which it was used with `List.Extra.last`, like.. ```elm case (List.Extra.init list, List.Extra.last list) of (Just init, Just last) ->...

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...

Hello! Today I ran code like this.. ```elm [ Css.borderTopLeftRadius radiusSize , Css.borderTopRightRadius radiusSize , Css.borderBottomLeftRadius radiusSize , Css.borderBottomRightRadius radiusSize ] |> Css.batch |> Css.important ``` .. and the `important`...

The documentation for `defaultOptions` mentioned a `toElement` function, which is not a part of this package.