]> git.ipfire.org Git - thirdparty/foundation/foundation-emails.git/commitdiff
Fix nested column padding 966/head
authorStadly <magnar@myrtveit.com>
Tue, 22 Oct 2019 10:55:00 +0000 (12:55 +0200)
committerStadly <magnar@myrtveit.com>
Tue, 22 Oct 2019 10:55:00 +0000 (12:55 +0200)
scss/grid/_grid.scss

index 429b8f08a3e259c43e673bc16b237473c978660e..80116b715715677920a2dc852cc56d83c0c67050 100755 (executable)
@@ -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;
     }