Comment on Sass 3.3 is releasedComments−hobonumber112yI'm not a Sass expert here, but does anyone know if anything in this release helps with the problem of not being able to @extend items within media queries?−scottkellum12yYes, the new [@at-root](https://github.com/nex3/sass/blob/master/doc-src/SASS_CHANGE...) directive. It is verbose but will allow you to extend root level extends. However this creates selector spaghetti in your CSS and should be avoided if possible.
Comments
I'm not a Sass expert here, but does anyone know if anything in this release helps with the problem of not being able to @extend items within media queries?
Yes, the new [@at-root](https://github.com/nex3/sass/blob/master/doc-src/SASS_CHANGE...) directive. It is verbose but will allow you to extend root level extends. However this creates selector spaghetti in your CSS and should be avoided if possible.