Skip to content

Commit 2a15db1

Browse files
authored
Makes consistent 16px spacing between accounts and search (#240)
1 parent f3702bc commit 2a15db1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

renderer/components/UserAccountsList/UserAccountsList.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,11 @@ export function UserAccountsList() {
9696
const [sortOption, setSortOption] = useState<SortOption>(sortOptions[2]);
9797

9898
return (
99-
<VStack>
99+
<VStack gap={4}>
100100
{nodeStatusData?.blockchain.synced === false ? (
101101
<ChainSyncingMessage mb={4} />
102102
) : null}
103-
<Grid w="100%" templateColumns="3fr 1fr" gap={4} mb={4}>
103+
<Grid w="100%" templateColumns="3fr 1fr" gap={4}>
104104
<GridItem>
105105
<SearchInput onChange={(e) => setSearchInput(e.target.value)} />
106106
</GridItem>

0 commit comments

Comments
 (0)