Closed pvkekem closed 3 years ago
The following selector is not minified correct:
:is(.container) :is(.bold) { font-weight: bold; }
Minifies to :is(.container):is(.bold){font-weight: bold;}
:is(.container):is(.bold){font-weight: bold;}
Should be: :is(.container) :is(.bold){font-weight: bold;}
:is(.container) :is(.bold){font-weight: bold;}
Fixed in 1.16.3
The following selector is not minified correct:
Minifies to
:is(.container):is(.bold){font-weight: bold;}
Should be:
:is(.container) :is(.bold){font-weight: bold;}