From: Joe Workman Date: Tue, 15 Mar 2022 21:07:01 +0000 (-0700) Subject: Merge pull request #855 from joeworkman/feature/min-width-center X-Git-Tag: v2.4.0^2~29 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=3d486268db0213febc22304c025cabc16f9b3aa1;p=thirdparty%2Ffoundation%2Ffoundation-emails.git Merge pull request #855 from joeworkman/feature/min-width-center none is not a valid value for min-width --- 3d486268db0213febc22304c025cabc16f9b3aa1 diff --cc scss/grid/_grid.scss index 7d85883f,1e72a753..1e65c4c0 --- a/scss/grid/_grid.scss +++ b/scss/grid/_grid.scss @@@ -70,20 -69,13 +70,20 @@@ 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; + min-width: auto !important; } } }