Open nex3 opened 6 years ago
From https://github.com/sass/sass/issues/2497:
I have a CSS level 4 selector in SCSS: .someclass:nth-child(1 of .due-today) { /* ... */ } When compressing the CSS via Sass, the result is something like… .someclass:nth-child(1of.due - today) { /* ... */ } …which obviously isn't working.
I have a CSS level 4 selector in SCSS:
.someclass:nth-child(1 of .due-today) { /* ... */ }
When compressing the CSS via Sass, the result is something like…
.someclass:nth-child(1of.due - today) { /* ... */ }
…which obviously isn't working.
From https://github.com/sass/sass/issues/2497: