Skip to content

Instantly share code, notes, and snippets.

@cathysarisky
Created September 8, 2022 18:36
Show Gist options
  • Save cathysarisky/295f28835cce3442a600314708a74485 to your computer and use it in GitHub Desktop.
Save cathysarisky/295f28835cce3442a600314708a74485 to your computer and use it in GitHub Desktop.
Limit maximum image height in Ghost so it fits on one screen
<style>
.gh-article-image img {
max-height: 90vh;
object-fit: contain;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment