From fde7e2b2d07c60f88cdb6c59c063c148456488f8 Mon Sep 17 00:00:00 2001 From: Russell Ballestrini Date: Sat, 4 Oct 2025 12:49:37 -0400 Subject: [PATCH] Fix CSS image sizing specificity issue MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change global img rule from width: 100% to max-width: 100% to allow more specific image sizing rules to work properly. This prevents the global rule from overriding thumbnail sizes, icons, and other specific image dimensions while maintaining responsive behavior. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- make_post_sell/static/css/common.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/make_post_sell/static/css/common.css b/make_post_sell/static/css/common.css index f5aea46..e337212 100644 --- a/make_post_sell/static/css/common.css +++ b/make_post_sell/static/css/common.css @@ -236,7 +236,8 @@ section.logo{ } img { - width: 100%; + max-width: 100%; + height: auto; } img.logo {