Skip to content

Commit

Permalink
design: button width 변경에 따른 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
xxxjinn committed Feb 5, 2025
1 parent 1844c02 commit 12e2cd8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/giftbag/GiftBagForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@ const GiftBagForm = () => {
placeholder="빅토리의 생일 선물 보따리"
onChange={setGiftBagName}
/>
<Link href={`/giftbag/add?title=${encodeURIComponent(giftBagName)}`}>
<Link
href={`/giftbag/add?title=${encodeURIComponent(giftBagName)}`}
className="w-full"
>
<Button size="lg" disabled={giftBagName.length === 0}>
선물 채우러 가기
</Button>
Expand Down

0 comments on commit 12e2cd8

Please sign in to comment.