Hello! I'm learning SASS and I came across a problem that was supposed to be simple. heehehe.
This is not compiling:
$purple: #9b0aa8;
#fofo{
width:40px;
height:40px;
background: $purple;
}
#fofo:hover{
@include transform(translateY(50%), scale(0.5));
}
<div id="fofo"></div>
It presents prblema in the line:
'@include transform(translateY(50%), scale(0.5));'
saying:
stdin 10:3 root stylesheet on line 10 at column 3
Any ideas? It seems all right for me. = //