Skip to content

Commit

Permalink
Fix PayPal iframe z-index going over our webapp
Browse files Browse the repository at this point in the history
  • Loading branch information
0xNeshi committed Dec 11, 2023
1 parent bf0fdee commit 0a1eb97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/donation/Steps/DonateMethods/PayPal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ export default function PayPal() {
function Content() {
const [{ isPending }] = usePayPalScriptReducer();
return (
<div className="grid place-items-center min-h-[16rem]">
<div className="grid place-items-center min-h-[16rem] isolate">
{isPending && <LoaderRing thickness={10} classes="w-8" />}
<PayPalButtons />
<PayPalButtons className="w-80" />
</div>
);
}

0 comments on commit 0a1eb97

Please sign in to comment.