How do I undo the bleed-x() mixin at a smaller breakpoint so box4 (the yellow box) in example 2 goes back in between the purple columns and doesn't wrap to the next line.
.story4 {
@include bleed-x();
@include span(2);
background: yellow;
height: 80px;
@include breakpoint($small) {
@include span(8 last);
}
}
Bleed is a combination of negative margins and positive padding. Reset both to
0to override:In general, I try to avoid breakpoint overrides by limiting the original application. Something more like this: