Skip to content

Commit 01c148d

Browse files
Merge pull request #14925 from LedgerHQ/fix/LIVE-25670-add-border-for-swap-portfolio
fix(LIVE-25670): add border for swap on portfolio widget
2 parents 30290cc + b3ad2fd commit 01c148d

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

.changeset/stale-oranges-return.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"ledger-live-desktop": patch
3+
---
4+
5+
Add border around Swap on Portfolio webview and change Card corner radius

apps/ledger-live-desktop/src/renderer/screens/dashboard/components/SwapWebViewEmbedded.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,11 @@ function SwapCard({
4646

4747
if (isWallet40) {
4848
return (
49-
<div style={style} data-testid={testId} className="overflow-hidden rounded-md bg-surface">
49+
<div
50+
style={style}
51+
data-testid={testId}
52+
className="overflow-hidden rounded-xl border border-muted-subtle"
53+
>
5054
{children}
5155
</div>
5256
);

0 commit comments

Comments
 (0)