Change within-flow block padding to margin so spacing *does* collapse

This commit is contained in:
benjamin melançon 2019-01-08 17:44:53 -05:00
parent 6b2856e83f
commit a387171538

View file

@ -37,7 +37,12 @@
[class^=flow] { [class^=flow] {
box-sizing: border-box; box-sizing: border-box;
@include tablet { @include tablet {
padding: $column-gap; margin: $column-gap;
}
+ [class^=flow] {
h2:first-child {
margin-top: 1.1428em;
}
} }
} }
.flow_full { .flow_full {