rtfeldman / elm-css

Typed CSS in Elm.
https://package.elm-lang.org/packages/rtfeldman/elm-css/latest
BSD 3-Clause "New" or "Revised" License
1.23k stars 196 forks source link

parent:hover child { ... } #533

Closed MedeaMelana closed 3 years ago

MedeaMelana commented 3 years ago

Is it possible to do the elm-css equivalent of something like

parent:hover child { ... }

?

mackdunkan commented 3 years ago
, hover [ descendants [ typeSelector "selectorChild" [ color ... ] ] ]
MedeaMelana commented 3 years ago

Ah sweet, thanks :-)