From 3c912f20d7c3c6ac010e1d62dc1886695321dd01 Mon Sep 17 00:00:00 2001 From: Aaron Arney Date: Mon, 14 Dec 2015 17:26:52 -0500 Subject: [PATCH] Issue #7498 Remove !global flag from $grid-column-count Creating a custom row size using the grid-row mixin was not properly generating the correct CSS. Removing the !global flag from the $grid-column-count in the grid-context mixin seems to correct this. Tested using following scss. The first list generates a row 17 columns wide, while the second list generates the default 12 ul.one @include grid-row(17) li @include grid-column(1) ul.two li @include grid-column(1) --- scss/grid/_row.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scss/grid/_row.scss b/scss/grid/_row.scss index 25e768e86..3f0aa3bf2 100644 --- a/scss/grid/_row.scss +++ b/scss/grid/_row.scss @@ -29,7 +29,7 @@ } // Restore the old column count - $grid-column-count: $old-grid-column-count !global; + $grid-column-count: $old-grid-column-count; } /// Creates a grid row. -- 2.47.2