-
-
Notifications
You must be signed in to change notification settings - Fork 78.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The number of columns should be an additional parameter for make-grid() and make-grid-columns-float() #11322
Comments
This sounds pretty doable+reasonable, although I don't know how much we care about supporting/helping multiple custom grid systems in the first place. |
This sounds bad. Subgrid = grid in grid (nesting). Bootstrap already has nesting support. |
@zdroid i want to nest for example a 10 columns grid inside a 12 columns grid. This differs from the current nesting (support). |
Why? Bootstrap cannot support every case. 2013/11/1 Bass Jobsen [email protected]
Zlatan Vasović - ZDroid |
+1 |
Multiple custom grids won't be supported. |
Cause
@grid-columns
will be used to define the number of columns in make-grid() and make-grid-columns-float() it will be impossible to compile sub grid with different number of columns. See also: http://stackoverflow.com/a/19724075/1596547The extra parameter will make possible to do:
make-grid(@grid-columns, sm, width,@grid-columns);
andmake-grid(6, sm, width,6);
etc.The text was updated successfully, but these errors were encountered: