I am using sass with prepros compiler and sublime editor. I need to have each scss file complied with the same file name.
For example: I currently have-
- header.scss
- content-top.scss
- footer.scss
and they are all compiles into style.css to create one full style sheet.
I wish to have a style folder with
- header.css
- content-top.css
- footer.css
which will be done automatically when saving and compiling like I normally do. How can I accomplish this? Thank you