Skip to content

Commit

Permalink
fix: payment modal header overlaps (#6737)
Browse files Browse the repository at this point in the history
fix: reduce width size of modal header
  • Loading branch information
foochifa authored Sep 20, 2023
1 parent f8fa1ec commit 9862b60
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ export const DuplicatePaymentModal = ({
<ModalOverlay />
<ModalContent>
<ModalCloseButton />
<ModalHeader pb={'2rem'}>Proceed to pay again?</ModalHeader>
<ModalHeader pb={'2rem'} w="90%">
Proceed to pay again?
</ModalHeader>
<ModalBody flexGrow={0}>
<Stack>
<Text>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ export const FormPaymentModal = ({
<ModalOverlay />
<ModalContent>
<ModalCloseButton />
<ModalHeader pb={'2rem'}>You are about to make payment</ModalHeader>
<ModalHeader pb={'2rem'} w="90%">
You are about to make payment
</ModalHeader>
<ModalBody flexGrow={0}>
Please ensure that your form information is accurate. You will not
be able to edit your form after you proceed.
Expand Down

0 comments on commit 9862b60

Please sign in to comment.