Skip to content

Commit 2056582

Browse files
committed
fix: restore image size in grid layout
1 parent 560900b commit 2056582

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/web/components/dashboard/bookmarks/BookmarkLayoutAdaptingCard.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ function GridView({
181181
const note = showNotes ? bookmark.note?.trim() : undefined;
182182
const img = image(
183183
"grid",
184-
cn("h-52 min-h-52 w-full rounded-t-lg", imgFitClass),
184+
cn("h-56 min-h-56 w-full rounded-t-lg", imgFitClass),
185185
);
186186

187187
return (
@@ -193,7 +193,7 @@ function GridView({
193193
)}
194194
>
195195
<MultiBookmarkSelector bookmark={bookmark} />
196-
{img && <div className="h-52 w-full shrink-0 overflow-hidden">{img}</div>}
196+
{img && <div className="h-56 w-full shrink-0 overflow-hidden">{img}</div>}
197197
<div className="flex h-full flex-col justify-between gap-2 overflow-hidden p-2">
198198
<div className="grow-1 flex flex-col gap-2 overflow-hidden">
199199
{showTitle && title && (

0 commit comments

Comments
 (0)