postcss-unmq
postcss-unmq copied to clipboard
Support media query NOT operator
I find this plugin incredibly useful! Great job! ;)
Recently, I adopted the media query not
operator to emulate a less than
check:
@media not all and (min-width: 80em) {}
@media (min-width: 80em) {}
-
not
must be followed byall and
to work.
But it seems unmq currently doesn't support this (I guess it interprets the first mq the same way it does the second). Would it be much work to implement it?