Skip to content

Commit

Permalink
fix(server): fixed email footer image stretched #14617 (#14671)
Browse files Browse the repository at this point in the history
  • Loading branch information
TimVanOnckelen authored Dec 13, 2024
1 parent bccf2f6 commit 525840b
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions server/src/emails/components/footer.template.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@ export const ImmichFooter = () => (
<>
<Row className="h-18 w-full">
<Column align="center" className="w-6/12 sm:w-full">
<Link href="https://play.google.com/store/apps/details?id=app.alextran.immich">
<Img className="h-full max-w-full" src={`https://immich.app/img/google-play-badge.png`} />
</Link>
<div>
<Link href="https://play.google.com/store/apps/details?id=app.alextran.immich" className="object-contain">
<Img className="max-w-full" src={`https://immich.app/img/google-play-badge.png`} />
</Link>
</div>
</Column>
<Column align="center" className="w-6/12 sm:w-full">
<div className="h-full p-3">
<div className="h-full p-6">
<Link href="https://apps.apple.com/sg/app/immich/id1613945652">
<Img src={`https://immich.app/img/ios-app-store-badge.png`} alt="Immich" className="max-w-full" />
</Link>
Expand Down

0 comments on commit 525840b

Please sign in to comment.