Full width breakout element - markhowellsmead/helpers GitHub Wiki

Content column is restricted in width, but a full-width image should not be constrained.

.full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}