Skip to content

Commit

Permalink
🐛 Logo header size fix (ajnart#1625)
Browse files Browse the repository at this point in the history
  • Loading branch information
SeDemal authored Nov 13, 2023
1 parent 811d940 commit a1e8ffc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/layout/Common/Logo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit a1e8ffc

Please sign in to comment.