@charset "utf-8";

@mixin notfirst($hasChild: false) {
  @if ($hasChild) {

    &:not(:first-child) {
      @content;
    }
  }

  @else {

    &:not(:first-of-type) {
      @content;
    }
  }
}
