fix: cap markdown images to 400x300
This commit is contained in:
@@ -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"
|
||||||
|
|||||||
Reference in New Issue
Block a user