fix scrolling inside modal with an input that autofocuses (#5752)

This commit is contained in:
Matt Fiddaman
2025-09-20 20:03:01 +01:00
committed by GitHub
parent 4bdcb27573
commit 5f5457b226
44 changed files with 8 additions and 1 deletions

View File

@@ -203,7 +203,8 @@ const ModalContentContainer = ({
}
if (isActive) {
contentRef.current.style.transform = 'translateY(0px) scale(1)';
contentRef.current.style.transform = 'none';
contentRef.current.style.willChange = 'auto';
contentRef.current.style.pointerEvents = 'auto';
} else {
contentRef.current.style.transform = `translateY(-40px) scale(.95) rotate(${rotateFactor.current}deg)`;

View File

@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [matt-fidd]
---
Fix scrolling inside modals on iOS 26