From: Catalin Zalog Date: Mon, 3 Apr 2017 15:16:54 +0000 (+0300) Subject: css: .container-fluid 100% X-Git-Tag: v4.0.0-beta~147^2~63 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=094b3a129349a41b1319b0870fb3daa9459b7284;p=thirdparty%2Fbootstrap.git css: .container-fluid 100% Force .container-fluid to be 100% width no matter if the parent is flex, or not. Pen: http://codepen.io/zalog/pen/yMwyGr --- diff --git a/scss/_grid.scss b/scss/_grid.scss index 8c7a9ee318..9ab9ae02b6 100644 --- a/scss/_grid.scss +++ b/scss/_grid.scss @@ -11,11 +11,12 @@ // Fluid container // -// Utilizes the mixin meant for fixed width containers, but without any defined -// width for fluid, full width layouts. +// Utilizes the mixin meant for fixed width containers, but with 100% width for +// fluid, full width layouts. @if $enable-grid-classes { .container-fluid { + width: 100%; @include make-container(); } }