Skip to content

Commit

Permalink
fix: width auto for logo (#2077)
Browse files Browse the repository at this point in the history
  • Loading branch information
abvthecity authored Jan 24, 2025
1 parent 7ea1bd6 commit 1a8125c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/fern-docs/ui/src/header/HeaderLogoImage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export function HeaderLogoImage(): ReactElement | null {
priority={true}
loading="eager"
quality={100}
style={{ height }}
style={{ height, width: "auto" }}
/>
<FernImage
alt={title}
Expand All @@ -32,7 +32,7 @@ export function HeaderLogoImage(): ReactElement | null {
priority={true}
loading="eager"
quality={100}
style={{ height }}
style={{ height, width: "auto" }}
/>
</>
);
Expand All @@ -55,7 +55,7 @@ export function HeaderLogoImage(): ReactElement | null {
priority={true}
loading="eager"
quality={100}
style={{ height }}
style={{ height, width: "auto" }}
/>
);
}

0 comments on commit 1a8125c

Please sign in to comment.