Saas Folder structure - Partial Files
I am trying to create a folder structure for my SCSS files in Dreamweaver. It will be some where similar as follows.
stylesheets/
|
|-- modules/ # Common modules
| |-- _all.scss # Include to get all modules
| |-- _utility.scss # Module name
| |-- _colors.scss # Etc...
| ...
|
|-- partials/ # Partials
| |-- _base.sass # imports for all mixins + global project variables
| |-- _buttons.scss # buttons
| |-- _figures.scss # figures
| |-- _grids.scss # grids
| |-- _typography.scss # typography
| |-- _reset.scss # reset
| ...
|
|-- vendor/ # CSS or Sass from other projects
| |-- _colorpicker.scss
| |-- _jquery.ui.core.scss
| ...
|
`-- main.scss # primary Sass file
Reference - How to structure a Sass project
Is it possible for me to structure the Sass files and import the partial files to the main sass file. I am trying to have as many sass files as possible since it is recommended.

