Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/slow-sites-call.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"thirdweb": patch
---

Fix wallet row alignement in wide connect modal
Original file line number Diff line number Diff line change
Expand Up @@ -103,15 +103,14 @@
backgroundColor: theme.colors.tertiaryBg,
},
alignItems: "center",
all: "unset",
borderRadius: radius.md,
boxSizing: "border-box",
color: theme.colors.secondaryText,
cursor: "pointer",
display: "flex",
flexDirection: "row",

Check warning on line 111 in packages/thirdweb/src/react/web/ui/ConnectWallet/WalletEntryButton.tsx

View check run for this annotation

Codecov / codecov/patch

packages/thirdweb/src/react/web/ui/ConnectWallet/WalletEntryButton.tsx#L111

Added line #L111 was not covered by tests
gap: spacing.sm,
padding: `${spacing.xs} ${spacing.xs}`,
position: "relative",
transition: "background-color 200ms ease, transform 200ms ease",
width: "100%",
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -710,11 +710,12 @@
border: `2px solid ${theme.colors.borderColor}`,
borderRadius: radius.md,
display: "grid",
gap: spacing["4xs"],

Check warning on line 713 in packages/thirdweb/src/react/web/ui/ConnectWallet/WalletSelector.tsx

View check run for this annotation

Codecov / codecov/patch

packages/thirdweb/src/react/web/ui/ConnectWallet/WalletSelector.tsx#L713

Added line #L713 was not covered by tests
gridTemplateColumns: "1fr 1fr",
height: `${iconSize.lg}px`,
height: `${iconSize.xl}px`,

Check warning on line 715 in packages/thirdweb/src/react/web/ui/ConnectWallet/WalletSelector.tsx

View check run for this annotation

Codecov / codecov/patch

packages/thirdweb/src/react/web/ui/ConnectWallet/WalletSelector.tsx#L715

Added line #L715 was not covered by tests
justifyItems: "center",
padding: spacing.xs,
width: `${iconSize.lg}px`,
width: `${iconSize.xl}px`,

Check warning on line 718 in packages/thirdweb/src/react/web/ui/ConnectWallet/WalletSelector.tsx

View check run for this annotation

Codecov / codecov/patch

packages/thirdweb/src/react/web/ui/ConnectWallet/WalletSelector.tsx#L718

Added line #L718 was not covered by tests
};
});

Expand Down
Loading