Skip to content

v0.3

Latest
Compare
Choose a tag to compare
@ireade ireade released this 26 Apr 09:20
· 2 commits to master since this release

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 */ }