// Media query helper function

@mixin mq($size) {
  @media screen and (min-width: $size) {
    @content;
  }
}
