SASS - Comments indent matters
As you might know, SASS has pretty nice nesting feature:
.selector
color: red
font-size: 12px
and SASS allows you to put comments, but beware of your comment indent because:

This looks completely fine in this IDE right?!
Yeah… but how does compiler see that?
… Boom!
.dark-theme
// variables
@import 'base/dark-variables'
// fonts
@import 'fonts/dark'
Tweet