fix: event description for teams on mobile (#1261)
* fix: event description for teams on mobile * fix: replace sm:truncate with overflow-ellipsis overflow-hidden Co-authored-by: Peer Richelsen <peeroke@gmail.com>pull/1267/head
parent
b11d81fdd2
commit
91f2c380c5
|
@ -32,8 +32,9 @@ export const EventTypeDescription = ({ eventType, className }: EventTypeDescript
|
|||
<>
|
||||
<div className={classNames("text-neutral-500 dark:text-white", className)}>
|
||||
{eventType.description && (
|
||||
<h2 className="opacity-60 truncate max-w-[280px] sm:max-w-[500px]">
|
||||
<h2 className="opacity-60 overflow-ellipsis overflow-hidden max-w-[280px] sm:max-w-[500px]">
|
||||
{eventType.description.substring(0, 100)}
|
||||
{eventType.description.length > 100 && "..."}
|
||||
</h2>
|
||||
)}
|
||||
<ul className="flex mt-2 space-x-4 ">
|
||||
|
|
Loading…
Reference in New Issue