elm-css icon indicating copy to clipboard operation
elm-css copied to clipboard

nested pseudo selectors are dropped within media-queries

Open Warry opened this issue 7 years ago • 0 comments

see the SSCCE: https://ellie-app.com/3fJXyyDq2a1/5

From this this code, the compiled CSS does not include the firstChild declaration at all. :

styled div
        [ backgroundColor blue
        , withMediaQuery [ "screen and (min-width: 200px)" ]
            [ firstChild
                [ backgroundColor red
                ]
            ]
        ]```

Warry avatar Mar 14 '18 16:03 Warry