This repository was archived by the owner on Dec 28, 2021. It is now read-only.

Description
Input:
.a {
display: flex;
@nest .foo &,
@nest .bar & {
color: #fff;
}
}
Output:
.a {
display: flex;
}
.foo .a,
@nest .bar .a {
color: #fff;
}
Expected:
.a {
display: flex;
}
.foo .a,
.bar .a {
color: #fff;
}
The second @nest is not transformed. This issue is different than #40 because the @nest selectors are combined with a comma.
Versions:
- postcss: 7.0.6
- postcss-nesting: 7.0.0