Skip to content

Instantly share code, notes, and snippets.

@robspangler
Created July 12, 2022 14:29
Show Gist options
  • Save robspangler/49b0b4d9e6bdb6a0d08a4df198b43edb to your computer and use it in GitHub Desktop.
Save robspangler/49b0b4d9e6bdb6a0d08a4df198b43edb to your computer and use it in GitHub Desktop.
/* All */
h2.custom-class { font-size: 62px; }
/* Tablet & Below */
@media (max-width:992px) {
h2.custom-class { font-size: 52px; }
}
/* Mobile */
@media (max-width:767px) {
h2.custom-class { font-size: 32px; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment