Import multiple SCSS file

Hi, how do i import multiple scss file in a project?

What are you trying to achieve?

You can always just include a bunch of SCSS files into the master SCSS file.

@import "file1.scss";
@import "file2.scss";

Thank you for your reply! Managed to got it. :grinning: