Skip to content

Instantly share code, notes, and snippets.

@ostermanj
Created January 12, 2023 15:11
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 ostermanj/48a62a2cceebab82992e8fb8ce5b3703 to your computer and use it in GitHub Desktop.
Save ostermanj/48a62a2cceebab82992e8fb8ce5b3703 to your computer and use it in GitHub Desktop.
Media query example
.tl-all-event-desc {
max-width: 400px;
font-size: 1em;
display: none;
}
@media screen and (min-width: 500px) {
.tl-all-event-desc {
display: block;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment