-
Notifications
You must be signed in to change notification settings - Fork 757
Closed
Description
- please be specific (in the title and issue) about what you want to change:
If you want to see if the property name is supported, current implementation of@supportsis redundant.
@supports(some-new-feature: value) {
.foo {
some-new-feature: value;
}
}
Instead, I would like to write it as:
@supports(some-new-feature) {
.foo {
some-new-feature: value;
}
}