We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a258e7e commit 4158a79Copy full SHA for 4158a79
packages/thirdweb/src/react/web/ui/ConnectWallet/screens/Buy/swap/SwapSummary.tsx
@@ -98,7 +98,14 @@ export function SwapSummary(props: {
98
}}
99
>
100
{isDifferentRecipient && (
101
- <Container flex="row" gap="sm" p="sm">
+ <Container
102
+ flex="row"
103
+ gap="sm"
104
+ p="sm"
105
+ style={{
106
+ borderBottom: `1px solid ${theme.colors.borderColor}`,
107
+ }}
108
+ >
109
<WalletRow
110
address={props.receiver}
111
client={props.client}
@@ -119,7 +126,6 @@ export function SwapSummary(props: {
119
126
background: "transparent",
120
127
borderRadius: 0,
121
128
border: "none",
122
- borderTop: `1px solid ${theme.colors.borderColor}`,
123
129
124
130
/>
125
131
</Container>
0 commit comments