#SASS: Error: @use rules must be written before any other rules

1 messages · Page 1 of 1 (latest)

karmic hearth
#

The error you're encountering indicates that the @use rule in your _grid.scss file is being used after other rules, which is not allowed according to the Sass specification. The @use rule must come before any other CSS rules, including @import statements.

To resolve this issue, you need to ensure that @use is placed at the beginning of your _grid.scss file, before any other Sass rules.

low river