Created
November 26, 2019 09:12
-
-
Save web-crab/9968e8b2238adf34238c31be82a87ec4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$min-mobile-width = 320 | |
$max-desktop-width = 1200 | |
html | |
font-size: 10px | |
@media (max-width: $min-mobile-width) | |
font-size calc((100vw / $min-mobile-width) * 10) | |
@media(orientation: landscape) | |
font-size calc(10px - (100vw - 100vh) / 100) | |
@media (min-width: $max-desktop-width) | |
font-size calc((100vw / $max-desktop-width) * 10) | |
body | |
font-size 1.6rem |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment