Skip to content

Commit

Permalink
(chore) fix alert modal style
Browse files Browse the repository at this point in the history
  • Loading branch information
NikhilShahi committed Sep 6, 2022
1 parent ace71b1 commit c8c9976
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions frontend/src/components/Alert/AlertComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,14 @@ export const AlertComponent: React.FC<AlertComponentProps> = ({
</Button>
</HStack>
</VStack>
<Modal isCentered isOpen={isOpen} onClose={closeModal}>
<Modal
size={{ base: "full", md: "initial" }}
isCentered
isOpen={isOpen}
onClose={closeModal}
>
<ModalOverlay />
<ModalContent maxW="70%" h="85%">
<ModalContent w={{ md: "90%", lg: "70%" }} h="85%">
<ModalHeader mr="30px">
<HStack w="full" justifyContent="space-between">
<HStack>
Expand Down

0 comments on commit c8c9976

Please sign in to comment.