fix: custom meeting link overflowing (#9804)

Co-authored-by: Carina Wollendorfer <30310907+CarinaWolli@users.noreply.github.com>
Co-authored-by: CarinaWolli <wollencarina@gmail.com>
pull/9629/head v3.0.7
Kemil Beltre 2023-06-26 21:35:55 +02:00 committed by GitHub
parent 1510740cb2
commit 9441da9d4e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ export const EventMetaBlock = ({
) : (
<>{!!Icon && <Icon className="relative z-20 mr-2 mt-[2px] h-4 w-4 flex-shrink-0" />}</>
)}
<div className={classNames("relative z-10", contentClassName)}>{children}</div>
<div className={classNames("relative z-10 max-w-full break-words", contentClassName)}>{children}</div>
</div>
);
};