On 1 Jul 2011, at 14:47, Bob Sleys wrote:
> Since Radiant now includes compass for it's own use how can it be used to
> setup the site?
>
> I tried including a compass plugin in a .scss file and including that
> stylesheet into the layout but that didn't work, no include happened.
> Perhaps I'm missing something obvious.
It should just work. I've just tried this in Sass:
@import compass/css3
div
border: 3px solid #777
+box-shadow()
and this in scss:
@import "compass/css3";
div {
border: 3px solid #777;
@include box-shadow();
}
And both seem fine. Which version of radiant are you using, please?
will
ps. am I the only one who thinks SCSS is a dull step backwards?