- source_dir
- scss
- styles.scss
- bootstrap-scss
- _variables.scss
- bootstrap.scss
- scss
So I am thinking I might just move all the bootstrap.scss files into the main "scss" folder, but thats more a last resort.
My problem is I am trying to import the "_variables.scss" similar to how "bootstrap.scss" does so I can set variables that will effect my main bootstrap.css and my written styles.css with one variable, cool huh? But when I try to import it in source_dir > scss > styles.scss
I get an error.
// Failed
@import "variables";
// Failed
@import "../bootstrap-scss/variables";
Now lastly, I am using gulp to compile so I don't really want to watch the files, that was the chosen answer here SASS: Import a file from a different directory? I need to read some more on that post, but there has to be a good way to import these days?