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

20 lines
410 B
Plaintext
Raw Normal View History

2013-10-09 12:30:53 +02:00
.container {
@include container;
2013-10-11 22:06:20 +02:00
&.toolkit-grid { @include background-grid; }
2013-10-09 12:30:53 +02:00
<% data.layout.resolutions.each do |resolution| %>
2013-10-11 22:06:20 +02:00
@include breakpoint($<%= resolution.target %>) {
2013-10-12 17:51:13 +02:00
@include set-grid($<%= resolution.target %>-grid);
2013-10-11 22:06:20 +02:00
@include container;
2013-10-09 12:30:53 +02:00
2013-10-11 22:06:20 +02:00
&.toolkit-grid { @include background-grid; }
2013-10-09 12:30:53 +02:00
}
<% end %>
}
.row {
@extend %clear-fix;
@include bleed($gutter-width);
}