From: marcelopluz@gmail.com Date: Fri, 11 Nov 2016 15:59:47 +0000 (-0500) Subject: Fix bug #9361 X-Git-Tag: v6.3-rc1~25^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c84d6c1ccffcae6d2f46e3932e3ca62f151074b3;p=thirdparty%2Ffoundation%2Ffoundation-sites.git 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. --- 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