32teeths
32teeths

Reputation: 1499

Invalid css error when using lumx

I have added lumx to my existing project in which I used angular-material . I have used to bower to install lumx referring link .But after the addition I am getting the following error .

"Syntax error: Invalid CSS after \" eot\": expected \")\", was \": \"#{$file-pa...\"\A on line 22 of /var/www/Browndesk/app/bower_components/bourbon/app/assets/stylesheets/helpers/_font-source-declaration.scss\A from line 13 of /var/www/Browndesk/app/bower_components/bourbon/app/assets/stylesheets/_bourbon.scss\A from line 7 of /var/www/Browndesk/app/styles/main.scss"

Please Help .

Upvotes: 1

Views: 600

Answers (3)

Jonathan
Jonathan

Reputation: 11

I Had the same problem. I solved it by updating my sass compiler. check your sass version and run:

gem install sass

Upvotes: 0

Tim Berman
Tim Berman

Reputation: 21

The problem is with your sass compiler. I had the same problem when doing sass compile via compass. I switched to using sass compiler without compass and that solved it for me.

Upvotes: 1

Code Whisperer
Code Whisperer

Reputation: 23652

Your problem is with Bourbon, not with Lumx.

Source of error: app/bower_components/bourbon/app/assets/stylesheets/_bourbon.scss

Odds are bourbon is trying to parse some SCSS that it thinks is invalid.

Upvotes: 1

Related Questions