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:
parent
1689cecaf7
commit
50b072803d
1 changed files with 1 additions and 1 deletions
|
@ -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>
|
||||
|
|
Loading…
Add table
Reference in a new issue