//
// Grid Layout Output
//

.row {
  @include row();

  &--no-gutter {
    @include row($gutter: false, $margin: false);
  }
}


// Loop
@for $i from 1 through 4 {
  .col-0#{$i}--sm {
    @include column('sm', $i);
  }
}
@for $i from 1 through 8 {
  .col-0#{$i}--md {
    @include column('md', $i);
  }
}
@for $i from 1 through 12 {
  .col-0#{$i}--lg {
    @include column('lg', $i);
  }
}
