From 911e01359f6777d1d403e8bd9faba4e9f7eea40b Mon Sep 17 00:00:00 2001 From: Manan Tank Date: Tue, 1 Jul 2025 20:58:17 +0530 Subject: [PATCH] SDK: Restore border on embed components --- .changeset/crazy-regions-send.md | 5 +++++ .../src/react/web/ui/ConnectWallet/Modal/ConnectEmbed.tsx | 1 + 2 files changed, 6 insertions(+) create mode 100644 .changeset/crazy-regions-send.md diff --git a/.changeset/crazy-regions-send.md b/.changeset/crazy-regions-send.md new file mode 100644 index 00000000000..af467dfdeb5 --- /dev/null +++ b/.changeset/crazy-regions-send.md @@ -0,0 +1,5 @@ +--- +"thirdweb": patch +--- + +Restore border on embed components: `ConnectEmbed`, `BuyWidget`, `CheckoutWidget`, `TransactionWidget` diff --git a/packages/thirdweb/src/react/web/ui/ConnectWallet/Modal/ConnectEmbed.tsx b/packages/thirdweb/src/react/web/ui/ConnectWallet/Modal/ConnectEmbed.tsx index 837e18c49f7..2b4d64c6ed1 100644 --- a/packages/thirdweb/src/react/web/ui/ConnectWallet/Modal/ConnectEmbed.tsx +++ b/packages/thirdweb/src/react/web/ui/ConnectWallet/Modal/ConnectEmbed.tsx @@ -452,6 +452,7 @@ export const EmbedContainer = /* @__PURE__ */ StyledDiv<{ color: theme.colors.selectedTextColor, }, background: theme.colors.modalBg, + border: `1px solid ${theme.colors.borderColor}`, borderRadius: radius.xl, boxSizing: "border-box", color: theme.colors.primaryText,