Question

I tried for the first time today to use SASS. And Foundation. I followed many posts to eventually end up with a full (quiet) working folder for my project. I got an example HTLM from Foundation, and everything seems to work fine ! I can add or remove HTML without any problem, it still works.

So I tried to start edit _settings.scss. Unfortunately it changes nothing, and I just don't know why.

I don't know what to do next...

Was it helpful?

Solution

For SCSS to work you have to compile it after each save.

I recommend installing Ruby on your computer and using the command prompt to "watch" the file for changes.

basically something like this.

sass --watch styles.scss:styles.css

This will tell SASS to watch for changes on any files associated with styles.scss or whatever you named your master SCSS sheet. changes to _settings or _mixins etc will all be picked up and re-compiled after the save.

Check out this link for some basic info: http://sass-lang.com/guide

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top