diff --git a/packages/pl-fe/src/components/pull-to-refresh.tsx b/packages/pl-fe/src/components/pull-to-refresh.tsx index 33fbc4eba..a54821b6e 100644 --- a/packages/pl-fe/src/components/pull-to-refresh.tsx +++ b/packages/pl-fe/src/components/pull-to-refresh.tsx @@ -130,8 +130,6 @@ const PullToRefresh: React.FC = ({ * Reset Styles */ if (childrenRef.current) { - childrenRef.current.style.overflowX = 'hidden'; - childrenRef.current.style.overflowY = 'auto'; childrenRef.current.style.transform = 'unset'; } if (pullDownRef.current) { diff --git a/packages/pl-fe/src/styles/ptr.scss b/packages/pl-fe/src/styles/ptr.scss index bea07fbb1..62c655cf2 100644 --- a/packages/pl-fe/src/styles/ptr.scss +++ b/packages/pl-fe/src/styles/ptr.scss @@ -5,7 +5,7 @@ .ptr__children { height: 100%; width: 100%; - overflow: visible !important; + overflow: visible; -webkit-overflow-scrolling: touch; position: relative; }