Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Compass SCSS lower case of color code

In my team we have the same version of Compass (it`s Compass 0.12.2 Alnilam). When Compass compiles my SCSS the color code is changed from uppercase (#A0CAE3) to lowercase (#a0cae3) in the SCSS. Only I have this problem, other developers have the uppercase color code. Why?

like image 781
Rizhikov Viktor Avatar asked Mar 20 '13 07:03

Rizhikov Viktor


1 Answers

Is should check version of "sass".

sass -v

Sass version 3.1.15 works fine in my case. Uninstall all installed "sass" versions with

gem uninstall sass

and install 3.1.15 version

gem install sass -v 3.1.15
like image 100
Đorđe Zeljić Avatar answered Nov 06 '22 21:11

Đorđe Zeljić