Display image in original size

Oh, you’re right! My bad. Image height is constrained to 95vh (= 95% of the viewport height).

To answer your question, use the following CSS in your note template:

img {
  max-width: unset;
  max-height: unset;
}
1 Like