sass-site/source/assets/css/helpers/_grid.scss.erb

19 lines
384 B
Plaintext

.container {
@include container;
&.toolkit-grid { @include background-grid; }
<% data.layout.resolutions.each do |resolution| %>
@include breakpoint($<%= resolution.target %>) {
@include layout($<%= resolution.target %>-grid);
&.toolkit-grid { @include background-grid; }
}
<% end %>
}
.row {
@extend %clear-fix;
@include bleed-x($gutter-width);
}