ausybenelux / Ocelot

Ocelot is a theming starter kit for drupal 7.
5 stars 2 forks source link

better grid mixin #100

Closed rob-bar closed 9 years ago

rob-bar commented 9 years ago
@mixin grid($i, $container: false) {
  @if $container {
    @include container;
  }

  > * {
    @include span($cols / $i of $cols);

    &:nth-child(#{$i}n) {
      @include last;
    }

    &:nth-child(#{$i}n+1) {
      clear: both;
    }
  }
}