DEV Community

Discussion on: How to structure your SASS code

Collapse
 
thom4s profile image
Thomas

The sass @import rule is not the same as the vanilla css @import rule.
The sass compiler will make one file - main.css - by importing different sass files. In the end, you're linking one style file to your html or else and not importing anything else.

Collapse
 
freetruckhorse profile image
freetruckhorse

Thanks !