This element extends beyond viewport
Content extends past the edge →
@mixin full-bleed {
width: 100vw; ❌
margin-left: -50vw; ❌
// Includes scrollbar width
// = 375px + 17px = 392px
}
@mixin full-bleed {
width: 100%; ✓
max-width: 100%; ✓
margin-left: -50%; ✓
overflow-x: hidden; ✓
// Container-relative
// = 375px (exact)
}
100vw with 100% in full-bleed mixinbox-sizing: border-box resetmax-width: 100% to html and body elementsright: -100% to transform: translateX(100%)overflow-x: hidden to html, body, and critical elementsGenesis Theme - Horizontal Overflow Fix
Version 1.0.0 | 2026-02-04