Skip to content

Instantly share code, notes, and snippets.

@matthacksteiner
Created June 1, 2021 10:06
Show Gist options
  • Save matthacksteiner/8659c9f04c09d9363234cca40fa02a4c to your computer and use it in GitHub Desktop.
Save matthacksteiner/8659c9f04c09d9363234cca40fa02a4c to your computer and use it in GitHub Desktop.
Sass full-width mixin
.full-width {
width: 100vw;
position: relative;
left: 50%;
right: 50%;
margin-left: -50vw;
margin-right: -50vw;
}
//mixin to strech container over parent
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment