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

19 lines
384 B
Plaintext
Raw Normal View History

2013-10-09 12:30:53 +02:00
.container {
@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
<% data.layout.resolutions.each do |resolution| %>
2013-10-11 22:06:20 +02:00
@include breakpoint($<%= resolution.target %>) {
@include layout($<%= resolution.target %>-grid);
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-x($gutter-width);
2013-10-09 12:30:53 +02:00
}