Skip to content

Commit c4def95

Browse files
author
Nick Salloum
committed
adds cell offset modifiers
1 parent 2b8fd2a commit c4def95

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

src/flexgrid.scss

+29
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,7 @@ $flexgrid-gutters: (
122122
/**
123123
* Grid-cell--[size]
124124
* Grid-cell--[size]-[span]
125+
* Grid-cell--[size]-offset-[span]
125126
*
126127
* For the sake of the following documentation, let's assume that the breakpoint
127128
* sizes in the gridconfig remain:
@@ -164,6 +165,26 @@ $flexgrid-gutters: (
164165
* <div class="Grid-cell--xs-12 Grid-cell--sm-4 Grid-cell--lg-8"></div>
165166
* <div class="Grid-cell--xs-12 Grid-cell--sm-4 Grid-cell--lg-2"></div>
166167
* </div>
168+
*
169+
* Grid-cell--[size]-offset-[span]
170+
*
171+
* These modifiers can also be used declaratively, and chaining them together
172+
* will add offsets to grid cells at various breakpoints. For example, at the
173+
* smallest breakpoint, you can have an offset of 0 columns, at a medium
174+
* breakpoint, an offset of 4 columns, and at a large breakpoint, an offset of
175+
* 2 columns. Offsets are from the left, as that's where the horizontal stacking
176+
* of columns begins. If at any point, you want the offset to go back to 0, you
177+
* can use the offset-0 modifier.
178+
*
179+
* Example HTML:
180+
*
181+
* <div class="Grid Grid--gutter-xl">
182+
* <div class="Grid-cell--xs-12 Grid-cell--md-6 Grid-cell--md-offset-6"></div>
183+
* <div class="Grid-cell--xs-12 Grid-cell--md-8"></div>
184+
* </div>
185+
*
186+
* It's important to be careful that your offsets + cell spans don't overflow
187+
* outside the rows...a little bit of very basic math is required!
167188
*/
168189

169190
$flexgrid-cell-counter: 1;
@@ -195,6 +216,14 @@ $flexgrid-cell-counter: 1;
195216
}
196217
}
197218

219+
@include flexgrid-break($key) {
220+
@for $i from 0 through $flexgrid-columns {
221+
.Grid-cell--#{$key}-offset-#{$i} {
222+
margin-left: ($i/$flexgrid-columns)*100%;
223+
}
224+
}
225+
}
226+
198227
$flexgrid-cell-counter: $flexgrid-cell-counter + 1;
199228
}
200229

0 commit comments

Comments
 (0)