mirror of
https://github.com/danog/sass-site.git
synced 2024-12-14 18:37:35 +01:00
20 lines
422 B
Plaintext
20 lines
422 B
Plaintext
.container {
|
|
@include container(hide);
|
|
|
|
&.toolkit-grid { @include background-grid; }
|
|
|
|
<% data.layout.resolutions.each do |resolution| %>
|
|
@include breakpoint($<%= resolution.target %>) {
|
|
@include set-grid($<%= resolution.target %>-grid);
|
|
@include container(hide);
|
|
|
|
&.toolkit-grid { @include background-grid; }
|
|
}
|
|
<% end %>
|
|
}
|
|
|
|
.row {
|
|
@extend %clear-fix;
|
|
@include bleed($gutter-width);
|
|
}
|