From fe63b8abc4bc7a4c5ed391b86e2e3225907609a9 Mon Sep 17 00:00:00 2001 From: Saad Shahd Date: Thu, 26 May 2016 14:36:53 +0200 Subject: [PATCH] Fix: flex-grid nested rows with collapse Undo the margin declaration for `.row .row.collapse` Adds: ```CSS .row .row.collapse { margin-left: } ``` --- scss/grid/_flex-grid.scss | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/scss/grid/_flex-grid.scss b/scss/grid/_flex-grid.scss index 18910b26a..d8f33a640 100644 --- a/scss/grid/_flex-grid.scss +++ b/scss/grid/_flex-grid.scss @@ -165,7 +165,13 @@ } &.collapse { - > .column { @include grid-col-collapse; } + > .column { + @include grid-col-collapse; + > .row { + margin-left: 0; + margin-right: 0; + } + } } } -- 2.47.2