Skip to content

Commit 919489e

Browse files
committed
Merge branch 'frontend-fix-send-spacings' into release-v4.45.0
2 parents e1178cb + 5a1733c commit 919489e

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

frontends/web/src/routes/account/send/send.module.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44

55

66
.coinControlButtonContainer {
7-
height: 50px;
7+
height: 58px;
88
margin-bottom: var(--space-quarter);
99
}

frontends/web/src/routes/account/send/send.tsx

+7-4
Original file line numberDiff line numberDiff line change
@@ -441,10 +441,13 @@ class Send extends Component<Props, State> {
441441
<Balance balance={balance} noRotateFiat/>
442442
<div className={`flex flex-row flex-between ${style.container}`}>
443443
<label className="labelXLarge">{t('send.transactionDetails')}</label>
444-
<CoinControl
445-
account={account}
446-
onSelectedUTXOsChange={this.onSelectedUTXOsChange}
447-
/>
444+
<div className={style.coinControlButtonContainer}>
445+
<CoinControl
446+
account={account}
447+
onSelectedUTXOsChange={this.onSelectedUTXOsChange}
448+
/>
449+
</div>
450+
448451
</div>
449452
<Grid col="1">
450453
<Column>

0 commit comments

Comments
 (0)