Commit 3dd08d60 authored by Mark Otto's avatar Mark Otto
Browse files

Merge pull request #18695 from bassjobsen/patch-30

.container, .container-fluid should be conditional upon $enable-grid-…
parents 9262760a ddb652b8
Showing with 9 additions and 8 deletions
+9 -8
......@@ -2,23 +2,24 @@
//
// Set the container width, and override it for fixed navbars in media queries.
.container {
@include make-container();
@include make-container-max-widths();
@if $enable-grid-classes {
.container {
@include make-container();
@include make-container-max-widths();
}
}
// Fluid container
//
// Utilizes the mixin meant for fixed width containers, but without any defined
// width for fluid, full width layouts.
.container-fluid {
@include make-container();
@if $enable-grid-classes {
.container-fluid {
@include make-container();
}
}
// Row
//
// Rows contain and clear the floats of your columns.
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment