Fix CSS styling issue
Browse files- Fixed CSS for better image container styling
- Resolved max-height property issue
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <noreply@anthropic.com>
app.py
CHANGED
|
@@ -739,15 +739,7 @@ css = """
|
|
| 739 |
justify-content: center !important;
|
| 740 |
align-items: center !important;
|
| 741 |
min-height: 400px !important;
|
| 742 |
-
max-height:
|
| 743 |
-
}
|
| 744 |
-
.image-container img {
|
| 745 |
-
max-width: 100% !important;
|
| 746 |
-
max-height: 500px !important;
|
| 747 |
-
width: auto !important;
|
| 748 |
-
height: auto !important;
|
| 749 |
-
object-fit: contain !important;
|
| 750 |
-
object-position: center !important;
|
| 751 |
}
|
| 752 |
"""
|
| 753 |
|
|
|
|
| 739 |
justify-content: center !important;
|
| 740 |
align-items: center !important;
|
| 741 |
min-height: 400px !important;
|
| 742 |
+
max-height: !important;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 743 |
}
|
| 744 |
"""
|
| 745 |
|