When using commas in my projects, the generated css is not the one I would expect, leading to "leaking" of the styles.
Input
div, span {
color: black;
}
Expected output
#cssx-el-1 div, #cssx-el-1 span {
color: black;
}
Actual output
#cssx-el-1 div, span {
color: black;
}
When using commas in my projects, the generated css is not the one I would expect, leading to "leaking" of the styles.
Input
Expected output
Actual output