@@ -122,6 +122,7 @@ $flexgrid-gutters: (
122
122
/* *
123
123
* Grid-cell--[size]
124
124
* Grid-cell--[size]-[span]
125
+ * Grid-cell--[size]-offset-[span]
125
126
*
126
127
* For the sake of the following documentation, let's assume that the breakpoint
127
128
* sizes in the gridconfig remain:
@@ -164,6 +165,26 @@ $flexgrid-gutters: (
164
165
* <div class="Grid-cell--xs-12 Grid-cell--sm-4 Grid-cell--lg-8"></div>
165
166
* <div class="Grid-cell--xs-12 Grid-cell--sm-4 Grid-cell--lg-2"></div>
166
167
* </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!
167
188
*/
168
189
169
190
$flexgrid-cell-counter : 1 ;
@@ -195,6 +216,14 @@ $flexgrid-cell-counter: 1;
195
216
}
196
217
}
197
218
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
+
198
227
$flexgrid-cell-counter : $flexgrid-cell-counter + 1 ;
199
228
}
200
229
0 commit comments