thirdweb-dev/js

Unable to Scroll the Modal When Window Height is Low

ninpeng opened this issue · 2 comments

Explanation

When the screen height is low, such as in landscape mode on mobile, the modal cannot be scrolled, making it cannot to close or proceed.

Attach Image

image

I can fix this issue like this

-thirdweb\src\react\web\ui\ConnectWallet\constants.ts
Add below line
export const modalMaxHeightCompact = "100vh";

-thirdweb\src\react\web\ui\ConnectWallet\Modal\ConnectEmbed.tsx
And Edit this line from
height: modalSize === "compact" ? "auto" : wideModalMaxHeight, overflow: "hidden",
To
height: modalSize === "compact" ? modalMaxHeightCompact : wideModalMaxHeight, overflow: "auto",
Result looks like this
1
2

Hey @adamiller1014 feel free to open a PR for this!