Skip to main content

Responsive mixins

@mixin mobile {
  @media screen and (max-width: 767px) {
    @content;
  }
}