We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4de8712 commit 03ec45bCopy full SHA for 03ec45b
web/src/components/MemoExplorer/TagsSection.tsx
@@ -78,8 +78,8 @@ const TagsSection = observer((props: Props) => {
78
onClick={() => handleTagClick(tag)}
79
>
80
<HashIcon className="w-4 h-auto shrink-0" />
81
- <div className="inline-flex flex-nowrap ml-0.5 gap-0.5 max-w-[calc(100%-16px)]">
82
- <span className={cn("truncate", isActive ? "font-medium" : "")}>{tag}</span>
+ <div className="inline-flex flex-nowrap ml-0.5 gap-0.5 max-w-[calc(100%-1em) truncate]">
+ <span className={cn(isActive ? "font-medium" : "")}>{tag}</span>
83
{amount > 1 && <span className="opacity-60 shrink-0">({amount})</span>}
84
</div>
85
0 commit comments