Is it possible to define a default value for @content just as one would do with arguments?
@content
For instance something like:
@mixin foo {
try this:
@mixin foo($content: 100%) { width:$content; }
or this:
@mixin foo() { $content: 100%; width:$content; }