<===> input.scss
%a {
  @media only screen and (max-width: 100px) {
    color: red;
  }
}

b {
  @extend %a;
}

<===> output.css
@media only screen and (max-width: 100px) {
  b {
    color: red;
  }
}