Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .changeset/happy-hornets-divide.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"ledger-live-desktop": minor
"@ledgerhq/react-ui": minor
---

ui quick wins mad add account
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,6 @@ const ModularDrawerAddAccountFlowManager = ({ currency, source, onAccountSelecte
flexDirection="column"
height="100%"
width="100%"
paddingBottom={40}
paddingX="8px"
>
{renderStepContent(currentStep)}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { ActionsContainer } from "./components";
import { CryptoCurrency } from "@ledgerhq/types-cryptoassets";
import { TrackAddAccountScreen } from "../../analytics/TrackAddAccountScreen";
import { ADD_ACCOUNT_FLOW_NAME, ADD_ACCOUNT_PAGE_NAME } from "../../analytics/addAccount.types";
import { Flex } from "@ledgerhq/react-ui/index";

interface Props {
account: Account;
Expand All @@ -23,7 +24,9 @@ const FundAccount = ({ account, currency, source }: Props) => {
flow={ADD_ACCOUNT_FLOW_NAME}
source={source}
/>
<AccountItem account={formattedAccount} />
<Flex width="100%" alignItems="center" marginBottom={24}>
<AccountItem account={formattedAccount} />
</Flex>
<ActionsContainer account={account} currencyId={currency.id} />
</>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const AccountList = ({
return (
<VirtualList
items={accounts}
itemHeight={70}
itemHeight={76}
bottomComponent={bottomComponent}
renderItem={renderAccountItem}
/>
Expand Down
Loading