tag filters

This commit is contained in:
Oliver Bryan
2025-09-30 16:33:56 +01:00
parent 5ccaf76b86
commit 4295d8f4a9
2 changed files with 109 additions and 1 deletions

View File

@@ -74,7 +74,7 @@ tags.sort();
tags && tags.length > 0 && (
<div class="flex gap-1.5 text-xs flex-wrap leading-3 items-center mb-1 no-select">
{tags.map((tag: string, idx: number) => (
<span class="flex items-center text-ayu-gutter font-500 rounded-md border border-ayu-gutter px-1.5 py-0.5">
<span class="project-tag flex items-center text-ayu-fg font-500 rounded-md border border-ayu-gutter px-1.5 py-0.5">
{tag}
</span>
))}