Closed
Description
Is your feature request related to a problem? Please describe.
Yes, the css incompatible parts of sass
don't seem to be supported.
It would be great if we could write with programmatic short hand like this in SASS
@for $section from 1 to 10 {
.section-#{$section} {
// something systematic
}
}
and get typings for the compiled CSS result
.section-1 { ... }
.section-2 { ... }
.section-3 { ... }
Describe the solution you'd like
SASS/SCSS files are compiled for full SASS pre-processor language support
Describe alternatives you've considered
n/a