Skip to content

Commit d440732

Browse files
committed
fix(emails): keep custom whitelabel logos at height 34, not the padded wordmark's 41
1 parent 7b8bbeb commit d440732

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

apps/sim/components/emails/components/email-layout.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,8 @@ export function EmailLayout({
5454
<Section style={baseStyles.header}>
5555
<Img
5656
src={brand.logoUrl || `${baseUrl}/brand/color/email/wordmark.png`}
57-
height='41'
58-
{...(hasCustomLogo ? {} : { width: '68' })}
5957
alt={brand.name}
58+
{...(hasCustomLogo ? { height: '34' } : { height: '41', width: '68' })}
6059
style={hasCustomLogo ? { display: 'block', width: 'auto' } : { display: 'block' }}
6160
/>
6261
</Section>

0 commit comments

Comments
 (0)