I have a problem with node-sass 7.0.1. When use a pseudo class :not sass not compile and not show any error.
This is my code:
.wf-field--inline {
& > *:not(label + *) {
border-top-left-radius: 0 !important;
}
}
Output:
.wf-field--inline > * ;
Any ideas? Thanks in advance.