Does anyone know how I can get SCA to recognise mu...
# suitecommerce
g
Does anyone know how I can get SCA to recognise mutliple scss files within a custom extension? I have 3 different child views within the extension and would like to have a separate scss file for each child view.
c
Assuming you have already created them, have you imported them into your base scss file?
g
Are you referring to the base scss file in shopping, myaccount and checkout in the theme or the entry scss for the extension?
c
One of your
.scss
files must be referenced in your
manifest.json
to bootstrap it into your extension. Additional
.scss
files can be imported from that file like this:
@import "_custom_styles.scss";
g
Thanks - just imported the 3 scss into base scss and works as expected
💯 1