Consider parsing whole CSS file, instead of single rules
Closed this issue · 1 comments
dimitrisnl commented
This is will work:
.selector {
display: flex;
}
This will throw error:
.selector{
display: flex;
}
.selector2{
display: block;
}
dimitrisnl commented
done