Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 4.45 merged #3047

Merged
merged 11 commits into from
Nov 12, 2024
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
Loading