livestyle / issues

Report all your LivesStyle issues here
24 stars 1 forks source link

[analyzer] No mixin output widget in mixin call with content #128

Open sergeche opened 8 years ago

sergeche commented 8 years ago

Example:

$color: white;
@mixin colors($color: blue) {
  background-color: $color;
  @content;
  border-color: $color;
}
.colors {
  @include colors { color: $color; }
}