On nested grids, only the outside gutters should be removed, namely the
gutter to the left of the first column and the gutter to the right of
the last column. The gutter between the columns should be present on
nested columns, unless the grid is collapsed.
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;
}