Skip to content

Commit

Permalink
Pin minimum size of thumbnail
Browse files Browse the repository at this point in the history
  • Loading branch information
SchrodingersGat committed Jan 12, 2025
1 parent b24967f commit eb7d5f6
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/frontend/src/components/nav/PageDetail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,13 @@ export function PageDetail({
<Group justify='space-between' wrap='nowrap'>
<Group justify='left' wrap='nowrap'>
{imageUrl && (
<ApiImage src={imageUrl} radius='sm' mah={42} maw={42} />
<ApiImage
src={imageUrl}
radius='sm'
miw={42}
mah={42}
maw={42}
/>
)}
<Stack gap='xs'>
{title && <StylishText size='lg'>{title}</StylishText>}
Expand Down

0 comments on commit eb7d5f6

Please sign in to comment.