I encountered an issue when attempting to use @at-root and Interpolation in my Sass code. Despite using a standard example for testing, I still receive an error:
.button {
@at-root a#{&} {
color: green;
}
}
Error sass/Site.scss (Line 28 of sass/partials/_site-title.scss: Invalid CSS after " @at-root a#{": expected expression (e.g. 1px, bold), was "&} {")
I am using Sass 3.4.22 with Compass 1.0.3, leading me to believe it may be related to the development environment. Typically working on a Mac, I am currently using a Windows 7 computer with ruby 2.2.5p319 (i386 version).
Any insights on how to resolve this?