Skip to content

Instantly share code, notes, and snippets.

@rmpel
Last active February 27, 2020 10:28
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 rmpel/5bc25be891af9a98b0ec5d5b20dcd51a to your computer and use it in GitHub Desktop.
Save rmpel/5bc25be891af9a98b0ec5d5b20dcd51a to your computer and use it in GitHub Desktop.
Trouble making your website responsive below 375px?? fuck those small screens!

Trouble making your website responsive below 375px?? fuck those small screens!

p.s., GitHub is fucking the indents. Look at the RAW version :)

/** SCSS */
/** Fuck those small screens! */
@for $i from 0 through 16 {
@media all and (max-width: ( 375px - ($i*10px) )) {
body {
zoom: ( 375px - ($i*10px) ) / 385px;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment