I have the latest version of SASS & Grunt installed. When I try to extend a responsive class like so:
.project {
@extend %grid__item;
@extend %one-third;
@extend %desk--one-third;
}
I get the following compile error:
project" failed to @extend "%desk--one-third".
The selector "%desk--one-third" was not found.
Use "@extend %desk--one-third !optional" if the extend should be able to fail.
I am also using the latest sass file from this repository. Any suggestions as to the problem?
Thanks
Robert