jazzmasta
10/17/2017 - 9:15 AM

Mobile mixin

@mixin mobile {
  @media (max-width: #{$mobileBreakPoint}) {
    @content;
  }
}