Skip to content

Instantly share code, notes, and snippets.

@milanaryal
Created May 24, 2021 10:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save milanaryal/2ff59b3e27ff6995521e726dafed41d3 to your computer and use it in GitHub Desktop.
Save milanaryal/2ff59b3e27ff6995521e726dafed41d3 to your computer and use it in GitHub Desktop.
width.scss
body {
width: 100vw; // cause a horizontal scroll bar, if height > 100vh
min-width: 320px;
max-width: 100%; // 100vw bugfix, https://codepen.io/CiTA/pen/zYBmYBJ
min-height: 100vh;
overflow-x: hidden; // 100vw bugfix, https://codepen.io/CiTA/pen/zYBmYBJ
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment