While creating a Extension in SuiteCommerce Advanced we get a default Sass file.
But while doing development so much style needed and in one file it’s difficult to find the classes and IDs there.
In this case we can create new SASS file and and we’ve to just import that SASS file into main entry point SASS file.
And by this method we can create as many SASS we need.
e.g. :- we’ve a default file called style.scss and we’ve created another SASS file called style1.scss.
So in case this we can use @import property of SASS in our main entry point.
Syntax :- @import ‘style1.scss’, ..;
In main entry point file. And by this import you can add your all SASS files.