Describe the bug
When .ease-zoom-in is applied to a full-width hero section, Chrome shows a brief vertical scrollbar flicker on page load. The scale transform momentarily pushes content outside the viewport boundary before the animation settles.
Steps to Reproduce
- Apply
ease-zoom-in to a 100vw hero section
- Load the page in Chrome (desktop)
- A brief scrollbar flash appears in the first ~200ms
Expected Behavior
No scrollbar should appear during the zoom-in animation.
Suggested Fix
Add overflow: hidden on the body or parent wrapper in the ease-zoom-in class documentation, or use clip instead of overflow: hidden to avoid affecting scroll behaviour.
Describe the bug
When
.ease-zoom-inis applied to a full-width hero section, Chrome shows a brief vertical scrollbar flicker on page load. Thescaletransform momentarily pushes content outside the viewport boundary before the animation settles.Steps to Reproduce
ease-zoom-into a100vwhero sectionExpected Behavior
No scrollbar should appear during the zoom-in animation.
Suggested Fix
Add
overflow: hiddenon the body or parent wrapper in theease-zoom-inclass documentation, or useclipinstead ofoverflow: hiddento avoid affecting scroll behaviour.