Skip to content

Commit

Permalink
refactor(sass): rename files to start with an underscore (_) as requi…
Browse files Browse the repository at this point in the history
…red for partials

Error:
- SCSS partials were not prefixed with an underscore (_), which is required for them to be recognized as partials by the Sass compiler.
Without the underscore, Sass treats these files as standalone stylesheets, attempting to compile them directly, which can lead to errors or unwanted output.

Solution:
- Rename all SCSS partials to start with an underscore (_) to ensure they are treated as partials, meaning they will only be included when explicitly imported into other files.
  • Loading branch information
beatrizsmerino committed Oct 22, 2024
1 parent 4b33c15 commit f2ac117
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 0 deletions.
File renamed without changes.

0 comments on commit f2ac117

Please sign in to comment.