Sorry removed my reply. I debugged this and had no problems. I think this could be your cache issue again. While working in development you might just want to turn caching off.
Try clearing cache and see if that fixes it for you.
OK, it’s working. And it seems as if it was a caching problem somewhere. I disabled Grav’s caching for my development environment like this:
cache:
enabled: false
twig:
cache: false
And I cleared the caches, both Grav’s and CodeKit’s. I’m working to find out if and how I can disable CodeKit’s caching. I like CodeKit and use it to handle SASS (compiling to the folders I want) as well as Bourbon and Neat. I know there are other ways, but…
CodeKit is great, but it’s totally overkill for Grav. I can walk you through doing it without CodeKit in about 2 mins. Hop on IRC today and we can do that. That will ease your burdens
Not even that complicated. You can just install sass for the command line (http://sass-lang.com/install). One liner on mac, and pretty easy even on windows. Then you can just watch and automatically compile with a single line in your console/terminal:
scss --watch scss:css-compiled
We even have a script (.scss.sh) in the antimatter folder so you don’t even need to remember this.
You don’t really need any kind of live reload as Grav is so fast anyway, but you can even use a simple JS based reload like CSS Refresh to automatically reload your browser when it detects a change to the compiled CSS file.