I just started using sass and still study. I use this command to generate css from sass:
sass --watch custom.scss:custom.css
It seems empty classes and identifiers are being removed. Is it possible to include them in the given css?
SASS never compiles empty classes, as a workaround you can add CSS comments inside the class without rules, so it will be compiled.
.empty { /*I'm still empty*/ }