Fix footer layout on pages with flex/grid body#173
Conversation
When the body element uses display:flex or display:grid (like california-clock-change.html), the footer was being positioned as a sibling flex item instead of at the bottom. This fix: - Detects flex/grid layouts on body - Wraps existing content in a div that preserves the original layout - Resets body to a vertical flex column - Footer now always appears at the bottom regardless of parent layout
|
Claude finished @simonw's task —— View job Code Review CompleteReviewing the footer layout fix implementation:
Review Feedback✅ Code Quality & Best PracticesStrengths:
Minor suggestions:
|

When the body element uses display:flex or display:grid (like
california-clock-change.html), the footer was being positioned
as a sibling flex item instead of at the bottom. This fix: