This commit is contained in:
icssoa 2025-06-22 23:24:15 +08:00
parent 09dc03125d
commit 73c8a53654

View File

@ -173,6 +173,11 @@ function postcssPlugin(): Plugin {
}
}
// 处理 visibility 属性
if (decl.prop == "visibility") {
decl.remove();
}
// 解析声明值
const parsed = valueParser(decl.value);
let hasChanges = false;