Skip to content

Commit 7d32b29

Browse files
Add blur effect to repo and file columns in findings table
1 parent 9e72206 commit 7d32b29

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/pages/index.astro

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -262,12 +262,12 @@ const typeColors: Record<string, string> = {
262262
data-type={f.secret_type.toLowerCase()}>
263263
<td class="py-2 px-3 text-zinc-300 max-w-48 truncate">{f.project_name}</td>
264264
<td class="py-2 px-3">
265-
<a href={f.repo_url} target="_blank" rel="noopener" class="text-blue-400 hover:text-blue-300 font-mono text-xs">
265+
<span class="blur-[6px] select-none font-mono text-xs text-blue-400">
266266
{repoSlug}
267-
</a>
267+
</span>
268268
</td>
269-
<td class="py-2 px-3 font-mono text-xs text-zinc-400 max-w-64 truncate" title={f.file_path}>
270-
{f.file_path}:{f.line_number}
269+
<td class="py-2 px-3 font-mono text-xs text-zinc-400 max-w-64 truncate">
270+
<span class="blur-[6px] select-none">{f.file_path}:{f.line_number}</span>
271271
</td>
272272
<td class="py-2 px-3">
273273
<span class="inline-block w-2 h-2 rounded-full mr-1.5" style={`background-color: ${typeColors[f.secret_type] || '#6b7280'}`} />

0 commit comments

Comments
 (0)