fix: remove forced 4/3 aspect ratio and dark background from image containers
Images now size naturally within max constraints instead of being letterboxed into a 4/3 bg-surface-input container. Fixes dark bars on GIFs and images whose aspect ratio doesn't match 4/3.
This commit is contained in:
@@ -187,14 +187,11 @@ function buildComponents(): Components {
|
||||
|
||||
// Images (in markdown content — not attachments)
|
||||
img: ({ src, alt }) => (
|
||||
<div
|
||||
className="mt-1 rounded-md overflow-hidden bg-surface-input"
|
||||
style={{ aspectRatio: '4/3', maxWidth: 400, maxHeight: 300 }}
|
||||
>
|
||||
<div className="mt-1 max-w-[400px]">
|
||||
<img
|
||||
src={src}
|
||||
alt={alt ?? ''}
|
||||
className="w-full h-full object-contain"
|
||||
className="max-w-full max-h-[300px] rounded-md"
|
||||
loading="lazy"
|
||||
referrerPolicy="no-referrer"
|
||||
crossOrigin="anonymous"
|
||||
|
||||
Reference in New Issue
Block a user