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:
parent
baa8dffc02
commit
fde7e2b2d0
1 changed files with 2 additions and 1 deletions
|
|
@ -236,7 +236,8 @@ section.logo{
|
|||
}
|
||||
|
||||
img {
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
img.logo {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue