From: Stadly Date: Tue, 22 Oct 2019 10:55:00 +0000 (+0200) Subject: Fix nested column padding X-Git-Tag: v2.3.0~7^2~10^2 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=refs%2Fpull%2F966%2Fhead;p=thirdparty%2Ffoundation%2Ffoundation-emails.git Fix nested column padding --- diff --git a/scss/grid/_grid.scss b/scss/grid/_grid.scss index 429b8f08..80116b71 100755 --- a/scss/grid/_grid.scss +++ b/scss/grid/_grid.scss @@ -69,11 +69,18 @@ th.column { padding-bottom: $column-padding-bottom; // Prevents Nested columns from double the padding - .column, - .columns { + .column.first, + .columns.first { padding-left: 0 !important; + } + + .column.last, + .columns.last { padding-right: 0 !important; + } + .column, + .columns { center { min-width: none !important; }