How to import a custom.scss file in the debut theme?

It looks like the debut shopify theme has changed a little and importing a custom.scss file doesn’t seem to be working (for me at least)?

Before i was able to use something like: , but it doesnt seem to be working properly now.

Is there a better way?

@joshua-isaac

Goto layout/theme.liquid file.

Find:

{{ 'theme.scss.css' | asset_url | stylesheet_tag }}

Below add this:

{{ 'custom.scss.css' | asset_url | stylesheet_tag }}

Hope this helps.

Thanks!

1 Like

@dmwwebartisan thanks so much! looks like i was missing the trailing .css after .scss. Thanks again!

1 Like