Skip to content

Commit

Permalink
fixed header spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewlee348 committed Nov 29, 2024
1 parent 39ef549 commit 8aa5748
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/recovery/RecoveryHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export default function RecoveryHeader({ handleNetworkModal }: { handleNetworkMo

return (
<Box flexDirection="column" style={{ paddingBottom: '60px' }}>
<Box background="backgroundPrimary" position="fixed" left="0" width="full">
<Box background="backgroundPrimary" position="fixed" width="full">
<Box
flexDirection="row"
justifyContent="space-between"
Expand Down
3 changes: 1 addition & 2 deletions src/routes/Wallet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ import { WalletStore } from '~/stores/WalletStore'

import Networks from '~/components/network/Networks'
import RecoveryHeader from '~/components/recovery/RecoveryHeader'
import { RECOVERY_HEADER_HEIGHT } from '~/components/recovery/RecoveryHeader'
import SignClientTransactionConfirm from '~/components/signing/SignClientTransactionConfirm'
import SignClientTransactionRelay from '~/components/signing/SignClientTransactionRelay'
import DappList from '~/components/wallet/DappList'
Expand Down Expand Up @@ -300,7 +299,7 @@ function Wallet() {
}

return (
<Box justifyContent="center">
<Box>
<RecoveryHeader handleNetworkModal={() => setIsNetworkModalOpen(true)} />

<Box flexDirection="column" alignItems="center">
Expand Down

0 comments on commit 8aa5748

Please sign in to comment.