This commit is contained in:
icssoa 2025-06-22 23:24:15 +08:00 committed by icssoa
parent 5aa36c6a84
commit 807c8c50ae

View File

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