Fix CSS image sizing specificity issue

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 <noreply@anthropic.com>
This commit is contained in:
Russell Ballestrini 2025-10-04 12:49:37 -04:00
parent baa8dffc02
commit fde7e2b2d0

View file

@ -236,7 +236,8 @@ section.logo{
}
img {
width: 100%;
max-width: 100%;
height: auto;
}
img.logo {