Skip to content

Commit 15bc0b9

Browse files
authored
Fix: BaseCard height to auto (#314)
1 parent 1cf6fda commit 15bc0b9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/design-system/src/components/card/MyBookmarkCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const MyBookmarkCard = ({
3333
nickname && nickname.trim().length > 0 ? nickname : '도토리';
3434

3535
return (
36-
<BaseCard onClick={onClick} className="h-[33.8rem]">
36+
<BaseCard onClick={onClick} className="h-auto">
3737
<div className="flex h-[12rem] w-full items-center justify-center overflow-hidden bg-[#F8F8FA]">
3838
{imageUrl ? (
3939
<img src={imageUrl} className="h-full w-full object-cover" />

0 commit comments

Comments
 (0)