❤️ calc, it makes everything so easy:

.thing {
  background-color: #000;

  $maxWidth: 74rem;

  @media ( min-width: $maxWidth ) {
    // This is `max-width: $maxWidth` with a full width background.
    padding-left: calc( 50vw - #{$maxWidth/2} ); // ( (100vw - $maxWidth) / 2 )
    padding-right: calc( 50vw - #{$maxWidth/2} ); // ( (100vw - $maxWidth) / 2 )
  }
}

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.