fix: match GIF-only message size to standard media constraints
GIFs from Klipy were capped at 250×250px while all other visual media (attachments, image embeds) used 400×300px. Unified to 400×300px.
This commit is contained in:
@@ -369,11 +369,11 @@ export function Message({ message, isCompact, isFirstInGroup, previousMessageId
|
||||
) : (
|
||||
<div className="flex flex-col gap-1">
|
||||
{isGifOnly ? (
|
||||
<div className="mt-1 max-w-[250px]">
|
||||
<div className="mt-1 max-w-[400px]">
|
||||
<img
|
||||
src={message.content!.trim()}
|
||||
alt="GIF"
|
||||
className="max-w-full max-h-[250px] rounded-lg"
|
||||
className="max-w-full max-h-[300px] rounded-lg"
|
||||
loading="lazy"
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user