-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Closed
Description
Looks like namespacing doesn't work correctly with media queries:
#namespace {
#foo { color:black; }
@media (orientation:portrait) {
#bar { color:white }
}
}
Should result in:
#namespace #foo { color: black; }
@media (orientation:portrait) {
#namespace #bar { color: white; }
}
But instead you get:
#namespace #foo { color: black; }
@media (orientation:portrait) {
#bar { color: white; }
}
As you can see, the namespace is not applied to the rules inside a media query.
Metadata
Metadata
Assignees
Labels
No labels