// initialize grid generator
@mixin greedy($options...) {
  @if length($options) == 0 {
    $_: log('No grid option provided.');
  }
  
  // loop each grid config that will be generated
  @each $option in $options {
    @include grid-generator($option);
  }
}
