@mixin under-tiny {
  @include screen-under($breakpoint-tiny) {
    @content;
  }
}

@mixin under-or-at-tiny {
  @include screen-under-or-at($breakpoint-tiny) {
    @content;
  }
}

@mixin over-tiny {
  @include screen-over($breakpoint-tiny) {
    @content;
  }
}

@mixin over-or-at-tiny {
  @include screen-under-or-at-over($breakpoint-tiny) {
    @content;
  }
}



@mixin under-small {
  @include screen-under($breakpoint-small) {
    @content;
  }
}

@mixin under-or-at-small {
  @include screen-under-or-at($breakpoint-small) {
    @content;
  }
}

@mixin over-small {
  @include screen-over($breakpoint-small) {
    @content;
  }
}

@mixin over-or-at-small {
  @include screen-over-or-at($breakpoint-small) {
    @content;
  }
}



@mixin under-medium {
  @include screen-under($breakpoint-medium) {
    @content;
  }
}

@mixin under-or-at-medium {
  @include screen-under-or-at($breakpoint-medium) {
    @content;
  }
}

@mixin over-medium {
  @include screen-over($breakpoint-medium) {
    @content;
  }
}

@mixin over-or-at-medium {
  @include screen-over-or-at($breakpoint-medium) {
    @content;
  }
}



@mixin under-large {
  @include screen-under($breakpoint-large) {
    @content;
  }
}

@mixin under-or-at-large {
  @include screen-under-or-at($breakpoint-large) {
    @content;
  }
}

@mixin over-large {
  @include screen-over($breakpoint-large) {
    @content;
  }
}

@mixin over-or-at-large {
  @include screen-over-or-at($breakpoint-large) {
    @content;
  }
}



@mixin under-very-large {
  @include screen-under($breakpoint-very-large) {
    @content;
  }
}

@mixin under-or-at-very-large {
  @include screen-under-or-at($breakpoint-very-large) {
    @content;
  }
}

@mixin over-very-large {
  @include screen-over($breakpoint-very-large) {
    @content;
  }
}

@mixin over-or-at-very-large {
  @include screen-over-or-at($breakpoint-very-large) {
    @content;
  }
}



@mixin under-full {
  @include screen-under($breakpoint-full) {
    @content;
  }
}

@mixin under-or-at-full {
  @include screen-under-or-at($breakpoint-full) {
    @content;
  }
}

@mixin over-full {
  @include screen-over($breakpoint-full) {
    @content;
  }
}

@mixin over-or-at-full {
  @include screen-over-or-at($breakpoint-full) {
    @content;
  }
}
