Skip to content

Commit a264213

Browse files
committed
fix(webapp): lift the finding line text 2px
1 parent dd789e2 commit a264213

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

apps/webapp/app/components/dashboard-agent/report-sparkline.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,8 +169,8 @@ export function ReportFindingLine({
169169
return (
170170
<p className="grid grid-cols-[1rem_4.5rem_minmax(0,1fr)] items-start gap-x-2">
171171
<ReportSeverityIcon severity={severity} tone={tone} className="mt-0.5" />
172-
<span className="mt-px text-xs uppercase tracking-wide text-text-dimmed">{type}</span>
173-
<span className={cn("text-sm", bright ? "text-text-bright" : "text-text-dimmed")}>
172+
<span className="-mt-px text-xs uppercase tracking-wide text-text-dimmed">{type}</span>
173+
<span className={cn("-mt-0.5 text-sm", bright ? "text-text-bright" : "text-text-dimmed")}>
174174
{text}
175175
</span>
176176
</p>

0 commit comments

Comments
 (0)