Skip to content

Commit

Permalink
Small code fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
kkosiorowska committed Dec 6, 2023
1 parent 70073db commit 3ac1c6c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion dapp/src/components/ModalOverlay/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ export default function ModalOverlay({ marginTop }: { marginTop?: number }) {
zIndex="overlay"
// Hide the element when it is no longer needed.
display={showOverlay ? "block" : "none"}
// zIndex={showOverlay ? "overlay" : "-1"}
transition={`opacity ${DELAY}ms`}
mt={marginTop}
/>
Expand Down
4 changes: 2 additions & 2 deletions dapp/src/components/Modals/ConnectWalletModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ export default function ConnectWalletModal() {
<ModalHeader textAlign="center">
<TextLg>Bitcoin account not installed</TextLg>
</ModalHeader>
<ModalBody>
<VStack spacing={12} mt={8}>
<ModalBody mt={6}>
<VStack spacing={12}>
<Image src={ConnectBTCAccount} />
<TextMd textAlign="center">
Bitcoin account is required to make transactions for depositing and
Expand Down
4 changes: 2 additions & 2 deletions dapp/src/components/Modals/StakingOverviewModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ export default function StakingOverviewModal() {
<ModalHeader textAlign="center">Staking overview</ModalHeader>
<ModalBody>
<Stepper
gap={0}
index={2}
gap="0"
height="200px"
height={48}
orientation="vertical"
variant="basic"
>
Expand Down

0 comments on commit 3ac1c6c

Please sign in to comment.