Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialRuss Goodman
1,939 PointsTroubles with freshly installed bourbon
I've just installed bourbon on a simple static page website. This is the original Bourbon and it's immediately having issues that I'm not sure how to resolve. Any guidance is appreciated.
Bourbon v4.2.5 Sass v3.4.18
https://www.dropbox.com/s/bujb1xpyuj45df5/Screenshot%202015-09-22%2020.53.58.png?dl=0
5 Answers
Russ Goodman
1,939 PointsMy issue ended up being that I was using the Scout app to compile my scss. Scout is discontinued and uses an old version of sass. I thought it relied on my system version of sass. I've since changed to Koala and the problem is totally fixed.
Russ Goodman
1,939 Points```@import 'bourbon/_bourbon.scss'; @import '_reset.scss';
@[Antonio Jaramillo](https://teamtreehouse.com/antoniojaramillo), This is lines one and two of my style sheet. This is a fresh download of bourbon. Do I need to adjust a standard version of Bourbon to get it working?
It is Bourbon 4.2.5, and I'm running Sass 3.4.18.
https://www.dropbox.com/s/bujb1xpyuj45df5/Screenshot%202015-09-22%2020.53.58.png?dl=0
Antonio Jaramillo
15,604 PointsSo you don't have any other code created yet? For example, on your style.scss file?
Russ Goodman
1,939 PointsHere is a screenshot of my files.
In my stylesheet I have a single line of code⦠'''@import 'bourbon/_bourbon.scss';'''
When I compile it, I get those three lines of errors.
https://www.dropbox.com/s/zgg5jovgjitp5gm/Screenshot%202015-09-23%2018.47.57.png?dl=0
Antonio Jaramillo
15,604 PointsI think I spotted the problem. When you import partials it is implied that they are .scss files, so you actually don't need to add the extensions. For example, @import 'bourbon/bourbon' and @import 'reset'
Russ Goodman
1,939 PointsHi Antonio Jaramillo, I made the suggestion you mentioned but it didn't fix the issue.
https://www.dropbox.com/s/jk0kq2x0rurxd7u/Screenshot%202015-09-23%2019.19.30.png?dl=0
I've cut out a bunch of the styles that were causing issues. I think it has do to with compiling the sass.
Here is the issue within '_assign-inputs.scss'. I'm not sure how to fix this issue though.
Syntax error: Invalid null operation: ""[type=\"color\"]:" plus null".
https://www.dropbox.com/s/ndt70exolicrw14/Screenshot%202015-09-23%2019.20.57.png?dl=0
Thanks for your efforts.
Antonio Jaramillo
15,604 PointsInteresting. Sorry I couldn't be of more help. I love Sass, but it sure can be unforgiving at times.
Antonio Jaramillo
15,604 PointsAntonio Jaramillo
15,604 PointsCould you post your scss code as well? These errors are usually triggered by a simple typing error, a missing colon, a missing semicolon, or the like.