Merge pull request #23489 from overleaf/rd-fix-label-alignment-project-dashboard

[web] Fix the label alignment of tags

GitOrigin-RevId: fe0a530131148fc166b16c968dcec12a082a7413
This commit is contained in:
Rebeka Dekany
2025-02-11 23:54:13 +07:00
committed by Copybot
parent 22bf2ced21
commit a9d4341a26
@@ -111,11 +111,15 @@ function TagsDropdown() {
)
}
>
<span
className="badge-tag-circle align-self-center ms-0"
style={{ backgroundColor: getTagColor(tag) }}
/>
<span className="text-truncate">{tag.name}</span>
<div className="badge-tag-content">
<span className="badge-prepend">
<i
className="badge-tag-circle align-self-center ms-0"
style={{ backgroundColor: getTagColor(tag) }}
/>
</span>
<span className="text-truncate">{tag.name}</span>
</div>
</DropdownItem>
</li>
))}