Skip to content

Instantly share code, notes, and snippets.

@jackabox
Last active May 1, 2019 10:06
Show Gist options
  • Save jackabox/6541edac3f49f038f2b991914f7032b8 to your computer and use it in GitHub Desktop.
Save jackabox/6541edac3f49f038f2b991914f7032b8 to your computer and use it in GitHub Desktop.
Responsive Scaling Font with min font-size.
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;
}
}
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