From c84d6c1ccffcae6d2f46e3932e3ca62f151074b3 Mon Sep 17 00:00:00 2001 From: "marcelopluz@gmail.com" Date: Fri, 11 Nov 2016 10:59:47 -0500 Subject: [PATCH] Fix bug #9361 The flex grid sets the display of a row that is aslo a column as 'block', remove this declaration since its not needed. --- scss/grid/_flex-grid.scss | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/scss/grid/_flex-grid.scss b/scss/grid/_flex-grid.scss index febd8d45b..3a191d4bc 100644 --- a/scss/grid/_flex-grid.scss +++ b/scss/grid/_flex-grid.scss @@ -188,8 +188,7 @@ // Column row // The double .row class is needed to bump up the specificity .column.row.row { - float: none; - display: block; + display: flex; } // To properly nest a column row, padding and margin is removed -- 2.47.2