Skip to content

Releases: ireade/feature-queries-manager

v0.3

26 Apr 09:20
Compare
Choose a tag to compare

I changed the way the FQM works to simply invert the query condition instead of deleting the rule altogether.

For example, it will turn the following feature query condition...

@supports (display: flex) { /* styles here */ }

... Into the following...

@supports not((display: flex)) { /* styles here */ }