fix: cap all embed types to 400px max-width

This commit is contained in:
Jannis Braun
2026-03-24 05:16:31 +01:00
parent e64658bdd5
commit 7e9020f5a6
5 changed files with 6 additions and 6 deletions
@@ -19,7 +19,7 @@ export function EmbedRenderer({ embed }: EmbedRendererProps) {
case 'audio':
return (
<div className="mt-2 max-w-[520px] bg-surface-channel rounded-[4px] border-l-4 border-border-hard p-3">
<div className="mt-2 max-w-[400px] bg-surface-channel rounded-[4px] border-l-4 border-border-hard p-3">
{embed.title && (
<a
href={embed.url}