I just started using SASS and I'm trying to figure out how to create a shadow box tag ...
I copied this mixin from another column ..
@mixin box-shadow($top, $left, $blur, $color, $inset:"") { -webkit-box-shadow:$top $left $blur $color  
However, I donβt know exactly how to format my @include
This is what I have for my @include
 @include box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); 
And this is my conclusion error ...
 error(Line 1003: Invalid CSS after "...lude box-shadow": expected "}", was ": inset 0 1px 1...") 
source share