Fix issue short-id vertical alignment in EntityRow

Add position: relative with top: 1px to the identifier span
so "PAP-38" style labels align properly in issue tables.

PAP-39

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Forgotten
2026-02-20 15:49:16 -06:00
parent 65f09a1a9d
commit cae0f416f2

View File

@@ -36,7 +36,7 @@ export function EntityRow({
<div className="flex-1 min-w-0">
<div className="flex items-center gap-2">
{identifier && (
<span className="text-xs text-muted-foreground font-mono shrink-0">
<span className="text-xs text-muted-foreground font-mono shrink-0 relative top-[1px]">
{identifier}
</span>
)}