mirror of
https://github.com/danog/sass-site.git
synced 2024-12-13 18:07:35 +01:00
19 lines
384 B
Plaintext
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);
|
|
}
|