fix: compatibility issue with safari (#3019)

pull/3022/head
Brandon Cohen 2 years ago committed by GitHub
parent f20ba3fc2e
commit e486623310
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -12,18 +12,22 @@ const PullToRefresh: React.FC = () => {
Router.reload(); Router.reload();
}, },
iconArrow: ReactDOMServer.renderToString( iconArrow: ReactDOMServer.renderToString(
<RefreshIcon className="z-50 m-auto h-9 w-9 rounded-full border-4 border-gray-800 bg-gray-800 text-indigo-500 ring-1 ring-gray-700" /> <div className="p-2">
<RefreshIcon className="z-50 m-auto h-9 w-9 rounded-full border-4 border-gray-800 bg-gray-800 text-indigo-500 ring-1 ring-gray-700" />
</div>
), ),
iconRefreshing: ReactDOMServer.renderToString( iconRefreshing: ReactDOMServer.renderToString(
<RefreshIcon <div
className="z-50 m-auto h-9 w-9 animate-spin rounded-full border-4 border-gray-800 bg-gray-800 text-indigo-500 ring-1 ring-gray-700" className="animate-spin p-2"
style={{ animationDirection: 'reverse' }} style={{ animationDirection: 'reverse' }}
/> >
<RefreshIcon className="z-50 m-auto h-9 w-9 rounded-full border-4 border-gray-800 bg-gray-800 text-indigo-500 ring-1 ring-gray-700" />
</div>
), ),
instructionsPullToRefresh: ReactDOMServer.renderToString(<div />), instructionsPullToRefresh: ReactDOMServer.renderToString(<div />),
instructionsReleaseToRefresh: ReactDOMServer.renderToString(<div />), instructionsReleaseToRefresh: ReactDOMServer.renderToString(<div />),
instructionsRefreshing: ReactDOMServer.renderToString(<div />), instructionsRefreshing: ReactDOMServer.renderToString(<div />),
distReload: 55, distReload: 60,
}); });
return () => { return () => {
PR.destroyAll(); PR.destroyAll();

@ -470,6 +470,6 @@
z-index: 30 !important; z-index: 30 !important;
} }
.ptr--ptr .ptr--box { .ptr--box {
margin-bottom: -13px !important; margin-bottom: -13px !important;
} }

Loading…
Cancel
Save