Fix CSS conflict regression (#842)
parent
755eb5fe53
commit
528fb6caba
|
@ -33,9 +33,9 @@ function getRuleProperties(rule: Rule): string[] {
|
||||||
rule.walkDecls(({ prop }) => {
|
rule.walkDecls(({ prop }) => {
|
||||||
properties.push(prop)
|
properties.push(prop)
|
||||||
})
|
})
|
||||||
if (properties.findIndex((p) => !isCustomProperty(p)) > -1) {
|
// if (properties.findIndex((p) => !isCustomProperty(p)) > -1) {
|
||||||
properties = properties.filter((p) => !isCustomProperty(p))
|
// properties = properties.filter((p) => !isCustomProperty(p))
|
||||||
}
|
// }
|
||||||
return properties
|
return properties
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue