Files
cv-site/tests/mjs/57-horizontal-scroll-debug.mjs
juanatsap 639a99b8ea fix: Complete mobile UX overhaul - horizontal scroll, landscape mode, and centering
Fixes three critical mobile issues across Android and iPhone:

1. HORIZONTAL SCROLL ELIMINATION (CRITICAL)
   - Added overflow-x: hidden to html and body globally
   - Landscape: Aggressive max-width: 100vw on all containers
   - Fixed .cv-page, .cv-container overflow issues
   - Prevented scale transform from causing overflow

2. LANDSCAPE MODE COMPLETE FIX
   - Single column layout enforced (grid-template-columns: 1fr)
   - Photo visible and sized appropriately (max-width: 120px)
   - Hamburger menu visible and accessible
   - Action bar simplified (center controls hidden)
   - Language selector compact
   - Smaller buttons (40px) with recalculated positions
   - Typography reduced for better fit

3. BUTTON CENTERING (VERIFIED WORKING)
   - Confirmed perfect centering in portrait mode
   - Android: 290px bar centered at viewport center (188px)
   - iPhone: Identical centering behavior
   - Landscape: 240px bar for 5 buttons (40px each)

Files modified:
- static/css/01-foundation/_reset.css - Global overflow-x fix
- static/css/05-responsive/_breakpoints.css - Comprehensive landscape overhaul
- tests/mjs/54-landscape-mode-test.mjs - Landscape validation (Android + iPhone)
- tests/mjs/55-button-centering-test.mjs - Button centering validation
- tests/mjs/56-landscape-debug-test.mjs - Media query debugging tool
- tests/mjs/57-horizontal-scroll-debug.mjs - Scroll width debugging tool

Test results:
 Portrait: Buttons perfectly centered (0px offset)
 Landscape: Single column, no horizontal scroll
 Hamburger visible and accessible in landscape
 Photo visible in all orientations
 Android + iPhone parity confirmed
2025-11-25 05:09:05 +00:00

71 lines
2.7 KiB
JavaScript
Executable File

#!/usr/bin/env node
import { chromium } from 'playwright';
const LANDSCAPE_VIEWPORT = { width: 667, height: 375 };
(async () => {
const browser = await chromium.launch({ headless: true });
const context = await browser.newContext({
viewport: LANDSCAPE_VIEWPORT,
userAgent: 'Mozilla/5.0 (Linux; Android 11; Pixel 5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.91 Mobile Safari/537.36',
hasTouch: true
});
const page = await context.newPage();
await page.goto('http://localhost:1999/?lang=en&view=extended');
await page.waitForLoadState('networkidle');
const debug = await page.evaluate(() => {
// Find all elements wider than viewport
const viewportWidth = window.innerWidth;
const wideElements = [];
document.querySelectorAll('*').forEach((el) => {
const rect = el.getBoundingClientRect();
if (rect.width > viewportWidth) {
const computed = window.getComputedStyle(el);
wideElements.push({
tag: el.tagName.toLowerCase(),
id: el.id || '(no id)',
classes: el.className || '(no classes)',
width: Math.round(rect.width),
computedWidth: computed.width,
maxWidth: computed.maxWidth,
overflow: computed.overflowX
});
}
});
// Sort by width descending
wideElements.sort((a, b) => b.width - a.width);
return {
viewportWidth,
bodyScrollWidth: document.body.scrollWidth,
documentScrollWidth: document.documentElement.scrollWidth,
hasHorizontalScroll: document.body.scrollWidth > viewportWidth,
wideElements: wideElements.slice(0, 10) // Top 10 widest
};
});
console.log(`Horizontal Scroll Debug:\n`);
console.log(`Viewport: ${debug.viewportWidth}px`);
console.log(`Body scroll width: ${debug.bodyScrollWidth}px`);
console.log(`Document scroll width: ${debug.documentScrollWidth}px`);
console.log(`Has horizontal scroll: ${debug.hasHorizontalScroll ? '❌ YES' : '✅ NO'}\n`);
if (debug.wideElements.length > 0) {
console.log(`Elements wider than viewport:\n`);
debug.wideElements.forEach((el, i) => {
console.log(`${i + 1}. <${el.tag}> #${el.id} .${el.classes}`);
console.log(` Width: ${el.width}px | Max-width: ${el.maxWidth} | Overflow: ${el.overflow}`);
console.log(` Computed width: ${el.computedWidth}\n`);
});
} else {
console.log('No elements wider than viewport found\n');
}
await browser.close();
})();