I have a very simple file:
h1 {
font-family: Helvetica, Arial, sans-serif;
font-size: 2em;
&.small {
font-size: 1em;
}
}
I then enter the following to compile the code sass test.scss
. However I receive the following error message and no CSS file is created.
/Library/Ruby/Gems/1.8/gems/sass-3.3.14/bin/../lib/sass/script/lexer.rb:343: warning: regexp has invalid interval
Any idea of what I may be doing incorrectly?