2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-13 10:35:40 +00:00

Fix image size restriction in PageDetail header (#8398)

This commit is contained in:
Oliver
2024-10-31 13:13:50 +11:00
committed by GitHub
parent 8822194b0d
commit feefa60a8f

View File

@ -63,7 +63,7 @@ export function PageDetail({
<Group justify="space-between" wrap="nowrap">
<Group justify="left" wrap="nowrap">
{imageUrl && (
<ApiImage src={imageUrl} radius="sm" h={64} w={64} />
<ApiImage src={imageUrl} radius="sm" mah={42} maw={42} />
)}
<Stack gap="xs">
{title && <StylishText size="lg">{title}</StylishText>}