This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

web/components/issue: better readability for IssueCardContent

Signed-off-by: eti <eti@eti.tf>

+3 -3
+3 -3
web/src/lib/components/repo/issues/IssueCardContent.svelte
··· 21 21 <div class="pb-2"> 22 22 <a {href} class="text-foreground-default no-underline"> 23 23 <span class="hover:underline">{issue.title}</span> 24 - <span class="text-foreground-subtle">#{issue.rkey}</span> 24 + <span class="text-foreground-muted">#{issue.rkey}</span> 25 25 </a> 26 26 </div> 27 27 28 - <div class="flex flex-wrap items-center gap-x-1 gap-y-1.5 typography-paragraph-small text-foreground-subtle"> 28 + <div class="flex flex-wrap items-center gap-x-1 gap-y-1.5 typography-paragraph-small text-foreground-muted"> 29 29 <IssueStatePill state={issue.state} /> 30 30 31 31 <span class="ml-1 flex items-center gap-1"> ··· 37 37 </span> 38 38 39 39 <span class="before:mr-1 before:content-['·']"> 40 - <a {href} class="text-foreground-subtle no-underline hover:underline"> 40 + <a {href} class="text-foreground-muted no-underline hover:underline"> 41 41 {issue.commentCount} 42 42 {issue.commentCount === 1 ? "comment" : "comments"} 43 43 </a>