Skip to content

Commit

Permalink
Merge branch 'frontend-fix-send-spacings' into release-v4.45.0
Browse files Browse the repository at this point in the history
  • Loading branch information
shonsirsha committed Oct 9, 2024
2 parents e1178cb + 5a1733c commit 919489e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion frontends/web/src/routes/account/send/send.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@


.coinControlButtonContainer {
height: 50px;
height: 58px;
margin-bottom: var(--space-quarter);
}
11 changes: 7 additions & 4 deletions frontends/web/src/routes/account/send/send.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -441,10 +441,13 @@ class Send extends Component<Props, State> {
<Balance balance={balance} noRotateFiat/>
<div className={`flex flex-row flex-between ${style.container}`}>
<label className="labelXLarge">{t('send.transactionDetails')}</label>
<CoinControl
account={account}
onSelectedUTXOsChange={this.onSelectedUTXOsChange}
/>
<div className={style.coinControlButtonContainer}>
<CoinControl
account={account}
onSelectedUTXOsChange={this.onSelectedUTXOsChange}
/>
</div>

</div>
<Grid col="1">
<Column>
Expand Down

0 comments on commit 919489e

Please sign in to comment.