Skip to content

Commit f8e44a2

Browse files
committed
fix OG preview images rendering at correct pixel sizes
1 parent 284e4e2 commit f8e44a2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • packages/app/src/app/blog/og-preview

packages/app/src/app/blog/og-preview/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ export default function OgPreviewPage() {
8080
alt={`${v.name} at ${s.label}`}
8181
width={s.w}
8282
height={s.h}
83-
style={{ width: s.w, height: s.h }}
84-
className="rounded border border-border"
83+
style={{ width: s.w, height: s.h, maxWidth: 'none' }}
84+
className="rounded border border-border shrink-0"
8585
/>
8686
</div>
8787
))}

0 commit comments

Comments
 (0)