Created by: dmbaughman
Per conversation with @mdo RE: adding a media query mixin that spans multiple breakpoints.
// SCSS input
@include media-breakpoint-between(sm,md) {
p {
color: #00c;
}
}
// CSS output
@media (min-width: 34em) and (max-width: 61.9em) {
p {
color: #00c;
}
}