2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-04-28 11:36:44 +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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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>}