Created
September 8, 2022 18:36
-
-
Save cathysarisky/295f28835cce3442a600314708a74485 to your computer and use it in GitHub Desktop.
Limit maximum image height in Ghost so it fits on one screen
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
<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