Item grid.
bower install trendwerk/grid#~0.0.4 --save
@include grid((
'item': '.selector',
));
Apply the mixin on the parent element, containing the grid items.
@include grid((
'breakpoints': (
421px: 2,
641px: 3,
981px: 4
),
'item': null,
'margin': 20px,
));
Specify breakpoints using a Sass map. Format: minWidth: columnAmount
.
The selector of the items in the grid.
The space between elements.