🐛 Logo header size fix (#1625)

This commit is contained in:
Tagaishi
2023-11-13 20:07:00 +01:00
committed by GitHub
parent 811d940f2b
commit a1e8ffc367

View File

@@ -17,8 +17,8 @@ export function Logo({ size = 'md', withoutText = false }: LogoProps) {
return (
<Group spacing={size === 'md' ? 'xs' : 4} noWrap>
<Image
width={size === 'md' ? 50 : 12}
height={size === 'md' ? 50 : 12}
width="unset"
height={size === 'md' ? 38 : 12}
styles={{
image: {
objectFit: 'contain !important' as 'contain',