Just an example/recommendation of how to organize sass files
Here you can check out the demo
- Base Estructure
- 📄Index File
- 📂Components
- 📄Footer
- 📄Header
- 📂Shared
- 📄mixins
- 📄variables
- 📄global
- 📄normalize
.
├── src
├── SCSS
├── components
├── header.scss
├── footer.scss
├── shared
├── _mixins.scss
├── _variables.scss
├── global.scss
├── index.scss
├── normalize.scss
This file contains general imports of main files
@import "global/normalize.scss";
@import "global/shared.scss";
@import "components/about.scss";
@import "components/cards.scss";
.
.
.