In order to use
@include box-shadow(0 0 10px black);
you would have to include the "library":
@import "compass/css3";
later in the file, I am including other scss:
@import "sidebar/main";
and in that sidebar/_main.scss, when i call the same:
@include box-shadow(0 0 10px black);
compass breaks with an error:
< ... Undefined mixin 'box-shadow'.>
Does this mean that I'll have to abstract the libraries in my own library file, and then include that file in each and every other scss???