From ae039585b4689cc9b6319b391e670e364ae4b735 Mon Sep 17 00:00:00 2001 From: Cutieguwu Date: Sat, 9 Aug 2025 16:31:50 -0400 Subject: [PATCH] Fix image scaling in blog pages. --- src/partials/_pane_blog.scss | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/partials/_pane_blog.scss b/src/partials/_pane_blog.scss index 305c4d0..4d50218 100644 --- a/src/partials/_pane_blog.scss +++ b/src/partials/_pane_blog.scss @@ -49,7 +49,9 @@ img { max-width: 100%; - max-height: 100%; + max-height: 65vh; + display: block; + margin: 0 auto; object-fit: contain; } }