Skip to content

Commit

Permalink
fix(web): add spec width scrollbar (#1046)
Browse files Browse the repository at this point in the history
  • Loading branch information
newfish-cmyk committed Apr 19, 2023
1 parent ade2a05 commit 4bbcaa0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/src/pages/home/mods/CreateAppModal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ const CreateAppModal = (props: {
},
})}

<Modal isOpen={isOpen} onClose={onClose} size="xl">
<Modal isOpen={isOpen} onClose={onClose} size="3xl">
<ModalOverlay />
<ModalContent>
<ModalHeader>{title}</ModalHeader>
Expand Down Expand Up @@ -245,7 +245,7 @@ const CreateAppModal = (props: {
<FormLabel htmlFor="bundleId">
{t("HomePanel.Application") + t("HomePanel.BundleName")}
</FormLabel>
<HStack spacing={"12px"}>
<HStack spacing={"12px"} overflowX="scroll" pb={"6px"}>
<Controller
name="bundleId"
control={control}
Expand Down

0 comments on commit 4bbcaa0

Please sign in to comment.