For better readability and understanding, ruleset blocks should be organized as follow:
.mybox {
$my-color: green;
color: $my-color;
@extend %module;
@include transition(all 0.3s ease-out);
}
.mybox {
$my-color: green;
@extend %module;
@include transition(all 0.3s ease-out);
color: $my-color;
}