2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-08 17:22:31 +03:00

Overhaul semantic grid mixins

- Drops all the `.make-**-column` mixins for a single set to be used
within (or outside) media queries.
- Renames `.container-fixed` to `.make-container` for consistency.
- Updates built-in grid system to use new setup.

See http://jsbin.com/qiqet/2/ for an example of it in action.
This commit is contained in:
Mark Otto
2014-07-08 03:38:23 -07:00
parent 9f53f9aea1
commit c3b0870ec0
4 changed files with 14 additions and 96 deletions
+2 -2
View File
@@ -8,7 +8,7 @@
// Set the container width, and override it for fixed navbars in media queries.
.container {
.container-fixed();
.make-container();
@media (min-width: @screen-sm-min) {
width: @container-sm;
@@ -28,7 +28,7 @@
// width for fluid, full width layouts.
.container-fluid {
.container-fixed();
.make-container();
}