Last active
May 1, 2019 10:06
-
-
Save jackabox/6541edac3f49f038f2b991914f7032b8 to your computer and use it in GitHub Desktop.
Responsive Scaling Font with min font-size.
This file contains hidden or 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
p, | |
font-size: 16px; | |
@screen xlarge { | |
font-size: 1.042vw; | |
} | |
@media (max-width: calc(20 / 1.042 * 100 * 1px)) and (min-width: theme('screens.xlarge')) { | |
font-size: 20px; | |
} | |
} |
This file contains hidden or 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
h1 { | |
font-size: 1.042vw; | |
} | |
@media (max-width: calc(16 / 1.042 * 100 * 1px)) { | |
h1 { | |
font-size: 16px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment