mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-14 02:55:41 +00:00
Fix image size restriction in PageDetail header (#8398)
This commit is contained in:
@ -63,7 +63,7 @@ export function PageDetail({
|
|||||||
<Group justify="space-between" wrap="nowrap">
|
<Group justify="space-between" wrap="nowrap">
|
||||||
<Group justify="left" wrap="nowrap">
|
<Group justify="left" wrap="nowrap">
|
||||||
{imageUrl && (
|
{imageUrl && (
|
||||||
<ApiImage src={imageUrl} radius="sm" h={64} w={64} />
|
<ApiImage src={imageUrl} radius="sm" mah={42} maw={42} />
|
||||||
)}
|
)}
|
||||||
<Stack gap="xs">
|
<Stack gap="xs">
|
||||||
{title && <StylishText size="lg">{title}</StylishText>}
|
{title && <StylishText size="lg">{title}</StylishText>}
|
||||||
|
Reference in New Issue
Block a user