Skip to content

Commit

Permalink
fix: limit width of logo in emails to 100% (immich-app#16164)
Browse files Browse the repository at this point in the history
Limit width of logo in emails to 100%

The current live version breaks Yahoo Mail (at least in Firefox). It appears far too large and makes the email unreadable by pushing the text outside of the reading pane.
  • Loading branch information
NickOveracker authored Feb 17, 2025
1 parent 1689cec commit 50b0728
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/emails/components/immich.layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export const ImmichLayout = ({ children, preview }: ImmichLayoutProps) => (
<Section className="flex justify-center mb-12">
<Img
src="https://immich.app/img/immich-logo-inline-light.png"
className="h-12 antialiased rounded-none"
className="h-12 antialiased rounded-none w-full"
alt="Immich"
/>
</Section>
Expand Down

0 comments on commit 50b0728

Please sign in to comment.