Unable to Scroll the Modal When Window Height is Low
ninpeng opened this issue · 2 comments
ninpeng commented
adamiller1014 commented
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
gregfromstl commented
Hey @adamiller1014 feel free to open a PR for this!