From 1ab705da86468ab2e568859f92d76c50e4671bce Mon Sep 17 00:00:00 2001 From: Cutieguwu Date: Sat, 9 Aug 2025 16:25:35 -0400 Subject: [PATCH] Try to fix image scaling on blog posts. --- src/partials/_pane_blog.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/partials/_pane_blog.scss b/src/partials/_pane_blog.scss index e784b3c..305c4d0 100644 --- a/src/partials/_pane_blog.scss +++ b/src/partials/_pane_blog.scss @@ -46,6 +46,12 @@ p { color: var(--white-1); } + + img { + max-width: 100%; + max-height: 100%; + object-fit: contain; + } } } }