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>
This commit is contained in:
		
							parent
							
								
									b11d81fdd2
								
							
						
					
					
						commit
						91f2c380c5
					
				
					 1 changed files with 2 additions and 1 deletions
				
			
		|  | @ -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 a new issue
	
	 Bill Gale
						Bill Gale