Bluesky app fork with some witchin' additions 💫 witchsky.app
bluesky fork client
117
fork

Configure Feed

Select the types of activity you want to include in your feed.

handle single-line text truncation (#10227)

authored by

Spence Pope and committed by
GitHub
9b31bb84 02daa017

+2 -2
+2 -2
bskyembed/src/components/embed.tsx
··· 94 94 /> 95 95 </div> 96 96 <div className="flex flex-1 items-center shrink min-w-0 min-h-0"> 97 - <p className="block text-sm shrink-0 font-semibold max-w-[70%] line-clamp-1"> 97 + <p className="text-sm shrink-0 font-semibold max-w-[70%] truncate"> 98 98 {record.author.displayName?.trim() || record.author.handle} 99 99 </p> 100 100 {verification.isVerified && ( ··· 104 104 size={12} 105 105 /> 106 106 )} 107 - <p className="block line-clamp-1 text-sm text-textLight dark:text-textDimmed shrink-[10] ml-1"> 107 + <p className="text-sm text-textLight dark:text-textDimmed min-w-0 truncate ml-1"> 108 108 @{record.author.handle} 109 109 </p> 110 110 </div>