0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-03-25 02:41:37 -05:00

fix: limit width of logo in emails to 100% (#16164)

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.
This commit is contained in:
Nick Overacker 2025-02-18 02:46:14 +09:00 committed by GitHub
parent 1689cecaf7
commit 50b072803d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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>