fix: cap markdown images to 400x300

This commit is contained in:
Jannis Braun
2026-03-24 05:16:56 +01:00
parent 7e9020f5a6
commit b6e8aee24b
@@ -190,7 +190,7 @@ function buildComponents(): Components {
<img <img
src={src} src={src}
alt={alt ?? ''} alt={alt ?? ''}
className="max-w-full max-h-[350px] rounded-md mt-1" className="max-w-[400px] max-h-[300px] rounded-md mt-1"
loading="lazy" loading="lazy"
referrerPolicy="no-referrer" referrerPolicy="no-referrer"
crossOrigin="anonymous" crossOrigin="anonymous"