How to include a SCSS file?

You must use the SCSS import function :

@import "my-file";

If your file is inside a folder, you have to write the whole path to this file :

@import "my-folder/my-file";