0

Error:

Running "autoprefixer:dist" (autoprefixer) task
File .tmp/styles/documentation.css created.
Warning: Can't parse CSS: Missing property value at line 66:21 in .tmp/styles/main.css Use --force to continue.

Line 66 points to the following code:

Source:

span {
  @extent .md-body-1;
}

p {
  @extent .md-body-1;
}

I can't extent a tag in scss? Or is a autoprefixer issue?

Pedro Dusso
  • 2,100
  • 9
  • 34
  • 64
  • That's correct, you can't `@extent` in Sass because there is no `@extent`. Double check your spelling. Voting to close: typographical error. – cimmanon May 08 '15 at 14:35

1 Answers1

0

you need to use @extend not @extent

Rachid
  • 812
  • 6
  • 7