I'm using bourbon and Neat with rails application. I can't make Neat run, one of the most common error that I get is:
error stylesheets/sass/neat/functions/_private.scss (Line 48: Invalid CSS after "... $grid-columns ": expected "}", was "!global !default;")
(and if I comment this line will be just another line)
I'm using Neat 1.5.1 with sass-rails
This is my gem file:
# Use SCSS for stylesheets
gem 'sass-rails', '>= 4.0.2'
gem 'leaflet-rails'
gem 'bourbon'
gem 'neat', '1.5.1'
I have
@import "bourbon/bourbon";
@import "grid-settings";
@import "neat/neat";
@import "setting";
in my main.scss
and
@import "main";
in my application.css.scss
If I put neat in application.css.scss I get "Undefined Mixing Error"
I already did bundle install, re-start the serve and clear the cache.