fix: Show photo at 50% size in landscape mode instead of hiding
Changed landscape orientation behavior to display profile photo at reduced size (50% width, max 80px) instead of hiding it completely. Changes: - static/css/05-responsive/_breakpoints.css: Changed from display:none to width:50% - tests/mjs/48-mobile-landscape-and-blur-test.mjs: Updated test to verify photo visibility Test Results: ✅ Photo visible in landscape: YES ✅ Photo width: 80px (max: 80px) ✅ Landscape mode optimized with visible photo Screenshot: tests/screenshots/mobile-landscape-optimized.png
This commit is contained in:
@@ -712,9 +712,11 @@
|
||||
font-size: 0.9em !important;
|
||||
}
|
||||
|
||||
/* Hide photo in landscape to save vertical space */
|
||||
/* Reduce photo size in landscape to 50% */
|
||||
.cv-photo {
|
||||
display: none !important;
|
||||
width: 50% !important;
|
||||
height: auto !important;
|
||||
max-width: 80px !important;
|
||||
}
|
||||
|
||||
/* Compact action bar */
|
||||
|
||||
Reference in New Issue
Block a user