Modals #44

Merged
LucidKobold merged 14 commits from modals into main 2022-04-03 02:53:08 -04:00
8 changed files with 360 additions and 171 deletions
Showing only changes of commit 7ddc48280c - Show all commits

View File

@@ -178,6 +178,13 @@ const AddUpdateSticker = ({
{"Previous"} {"Previous"}
</Button> </Button>
<HStack w="auto" h="auto" alignContent="center" spacing={6}> <HStack w="auto" h="auto" alignContent="center" spacing={6}>
<Button
backgroundColor="transparent"
_hover={{ backgroundColor: "brand.danger" }}
onClick={() => updateIsOpen(!isOpen)}
>
{"Cancel"}
</Button>
<Button <Button
variant="submit" variant="submit"
isDisabled={ isDisabled={
@@ -187,13 +194,6 @@ const AddUpdateSticker = ({
> >
{"Confirm"} {"Confirm"}
</Button> </Button>
<Button
backgroundColor="transparent"
_hover={{ backgroundColor: "brand.danger" }}
onClick={() => updateIsOpen(!isOpen)}
>
{"Cancel"}
</Button>
</HStack> </HStack>
</HStack> </HStack>
) )