Essentially, can this css be represented in either library:
.child {
display: none;
}
.parent:hover .child {
display: block;
}
I’ve used elm-ui a lot, but haven’t used elm-css at all, but in looking at the docs in both cases, it seems like hover rules can only be applied to the element you’re styling? I can’t figure out a way to refer to if a parent is being hovered over.