Skip to content

Commit

Permalink
fix: horizontal scroll on new card form
Browse files Browse the repository at this point in the history
  • Loading branch information
OldStarchy committed Aug 17, 2024
1 parent a756f03 commit 39b61bd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/form/CreateCardForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,10 @@ const CreateCardFormImpl = memo(function CreateCardFormImpl({
}, [cardCounts]);

return (
<form onSubmit={handleSubmit}>
<form
onSubmit={handleSubmit}
style={{ display: 'flex', flexWrap: 'wrap' }}
>
{dataList}
<Input
label="Name"
Expand Down

0 comments on commit 39b61bd

Please sign in to comment.