Skip to content

Commit f90bbf0

Browse files
committed
fixes
1 parent 6a2959f commit f90bbf0

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

src/pages/wallets/find-wallet.tsx

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ import { trackCustomEvent } from "../../utils/matomo"
3737
import { getImage } from "../../utils/image"
3838
import { useOnClickOutside } from "../../hooks/useOnClickOutside"
3939

40-
type ChildOnlyProp = { children: ReactNode }
40+
import type { ChildOnlyProp } from "../../types"
4141

4242
const Subtitle = ({ children }: ChildOnlyProp) => {
4343
return (
@@ -178,7 +178,11 @@ const FindWalletPage = ({ data, location }) => {
178178
>
179179
<Box w={{ base: "full", sm: "50%" }} mt={{ base: 8, sm: 0 }}>
180180
<Breadcrumbs slug={location.pathname} />
181-
<Heading as="h1" fontSize={{ base: "2.5rem", md: "5xl" }}>
181+
<Heading
182+
as="h1"
183+
fontSize={{ base: "2.5rem", md: "5xl" }}
184+
lineHeight={1.4}
185+
>
182186
<Translation id="page-find-wallet-title" />
183187
</Heading>
184188
<Subtitle>
@@ -271,7 +275,9 @@ const FindWalletPage = ({ data, location }) => {
271275
</Box>
272276
</Box>
273277
<Flex
274-
pt={{ base: 4, lg: 0 }}
278+
px={{ base: 0, md: 8 }}
279+
pt={4}
280+
pb={0}
275281
w="full"
276282
gap={6}
277283
height="90vh"

0 commit comments

Comments
 (0)